From bc4a11cf8309fb02ad39ff880156093ff5b2cc63 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 13 Jan 2026 15:46:05 -0800 Subject: [PATCH] Add missing semicolon to ambiguity.glob-vs-glob This example was missing a semicolon which causes a second error. --- src/names/name-resolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/names/name-resolution.md b/src/names/name-resolution.md index e66a0fec6a..319f4046c8 100644 --- a/src/names/name-resolution.md +++ b/src/names/name-resolution.md @@ -170,7 +170,7 @@ const _: () = { // The error happens when the name with the conflicting candidates // is used. let x = Ambig; // ERROR: `Ambig` is ambiguous. -} +}; ``` ```rust,no_run