diff --git a/README.md b/README.md index 555d058..7a4b754 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Tuple **Tuple is an immutable and hashable list.** ```python = () - = (, ) + = (,) = (, [, ...]) ``` diff --git a/index.html b/index.html index d88fccf..4b888c4 100644 --- a/index.html +++ b/index.html @@ -335,7 +335,7 @@ Counter({'blue': 3

#Tuple

Tuple is an immutable and hashable list.

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