Skip to content

Commit f99694d

Browse files
nassoehuss
authored andcommitted
Remove extra parenthesis
1 parent 77ea043 commit f99694d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/attributes/limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn f<T>(x: T) {}
5050
// This fails to compile because monomorphizing to
5151
// `f::<(i32, i32, i32, i32, i32, i32, i32, i32, i32)>>` requires more
5252
// than 8 type elements.
53-
f(((1, 2, 3, 4, 5, 6, 7, 8, 9));
53+
f((1, 2, 3, 4, 5, 6, 7, 8, 9));
5454
```
5555

5656
[_MetaNameValueStr_]: attributes.html#meta-item-attribute-syntax

0 commit comments

Comments
 (0)