Skip to content

Commit 9cf1343

Browse files
Havvyehuss
andauthored
Fix missing closing code blocks in tuples PR
Co-authored-by: Eric Huss <[email protected]>
1 parent ff68c99 commit 9cf1343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expressions/tuple-expr.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Examples of tuple expressions:
2929
| -------------------- | ------------ |
3030
| `()` | `()` (unit) |
3131
| `(0.0, 4.5)` | `(f64, f64)` |
32-
| `("x".to_string(), ) | `(String, ) |
32+
| `("x".to_string(), )` | `(String, )` |
3333
| `("a", 4usize, true)`| `(&'static str, usize, bool)` |
3434

3535
### Tuple expression attributes

0 commit comments

Comments
 (0)