Skip to content

Commit 24eebb6

Browse files
ismailariliktshepang
authored andcommitted
fix(name-resolution): remove unnecessary closing paranthesis
1 parent d9128a9 commit 24eebb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/name-resolution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ fn do_something<T: Default>(val: T) { // <- New rib in both types and values (1)
117117
}; // End of (3)
118118
// `val` is accessible, `helper` variable shadows `helper` function
119119
fn helper() { // <- New rib in both types and values (4)
120-
// `val` is not accessible here, (4) is not transparent for locals)
120+
// `val` is not accessible here, (4) is not transparent for locals
121121
// `T` is not accessible here
122122
} // End of (4)
123123
let val = T::default(); // New rib (5)

0 commit comments

Comments
 (0)