diff --git a/README.md b/README.md index bbc123b..69c2166 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ Tuple ```python = () = (, ) - = (, , ...) + = (, [, ...]) ``` ### Named Tuple diff --git a/index.html b/index.html index f68fc36..4ed0d9d 100644 --- a/index.html +++ b/index.html @@ -309,7 +309,7 @@ Counter({'blue': 3

#Tuple

Tuple is an immutable and hashable list.

<tuple> = ()
 <tuple> = (<el>, )
-<tuple> = (<el_1>, <el_2>, ...)
+<tuple> = (<el_1>, <el_2> [, ...])