From f0d57000729f356b64152614d13cab5522552871 Mon Sep 17 00:00:00 2001 From: Soroush Zare Date: Fri, 6 Oct 2023 14:30:34 -0700 Subject: [PATCH] Add a note on how to build a LocationSet using the LocationSet macro --- chorus_book/src/guide-locations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chorus_book/src/guide-locations.md b/chorus_book/src/guide-locations.md index ff838da..84c559d 100644 --- a/chorus_book/src/guide-locations.md +++ b/chorus_book/src/guide-locations.md @@ -32,7 +32,7 @@ assert_eq!(name, "Alice"); ## Location Set -A `LocationSet` is a special type representing a set of `ChoreographyLocation` types. It's used to ensure type safety within the system, and you'll see its application in future sections. +A `LocationSet` is a special type representing a set of `ChoreographyLocation` types. It's used to ensure type safety within the system, and you'll see its application in future sections. To build a `LocationSet` type, you can use the `LocationSet` macro from the `chorus_lib` crate. ```rust