Skip to content

Commit bc4a11c

Browse files
authored
Add missing semicolon to ambiguity.glob-vs-glob
This example was missing a semicolon which causes a second error.
1 parent 28b5a54 commit bc4a11c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/names/name-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const _: () = {
170170
// The error happens when the name with the conflicting candidates
171171
// is used.
172172
let x = Ambig; // ERROR: `Ambig` is ambiguous.
173-
}
173+
};
174174
```
175175

176176
```rust,no_run

0 commit comments

Comments
 (0)