diff --git a/src/types/tuple.md b/src/types/tuple.md index df21e1cdf..804d8a0ae 100644 --- a/src/types/tuple.md +++ b/src/types/tuple.md @@ -27,6 +27,7 @@ Its one value is also called *unit* or *the unit value*. Some examples of tuple types: * `()` (unit) +* `(i32,)` (1-ary tuple) * `(f64, f64)` * `(String, i32)` * `(i32, String)` (different type from the previous example)