Add missing semicolon to ambiguity.glob-vs-glob This example was missing a semicolon which causes a second error.
diff --git a/src/names/name-resolution.md b/src/names/name-resolution.md index e66a0fe..319f404 100644 --- a/src/names/name-resolution.md +++ b/src/names/name-resolution.md
@@ -170,7 +170,7 @@ // The error happens when the name with the conflicting candidates // is used. let x = Ambig; // ERROR: `Ambig` is ambiguous. -} +}; ``` ```rust,no_run