Skip to content

Commit b835bc4

Browse files
authored
Update procedural-macros.md
1 parent d9c533f commit b835bc4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/procedural-macros.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ type, unlike `Vec<TokenTree>`, is cheap to clone.
5252
5353
All tokens have an associated `Span`. A `Span` is an opaque value that cannot
5454
be modified but can be manufactured. `Span`s represent an extent of source
55-
code within a program and are primarily used for error reporting. You can modify
56-
the `Span` of any token.
55+
code within a program and are primarily used for error reporting. While you
56+
cannot modify a `Span` itself, you can always change the `Span` associated with
57+
any token.
5758
5859
### Procedural macro hygiene
5960

0 commit comments

Comments
 (0)