From 092a87a951e2e33269adc3a88fbaf95240eeac59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 3 Dec 2020 13:04:09 +0100 Subject: [PATCH] Set --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e31cbb9..cff4140 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ Set ```python .add() # Or: |= {} -.update() # Or: |= +.update( [, ...]) # Or: |= ``` ```python diff --git a/index.html b/index.html index cb5d091..f0e265b 100644 --- a/index.html +++ b/index.html @@ -301,7 +301,7 @@ Counter({'blue': 3
<set>.add(<el>)                                 # Or: <set> |= {<el>}
-<set>.update(<collection>)                      # Or: <set> |= <set>
+<set>.update(<collection> [, ...])              # Or: <set> |= <set>
 
<set>  = <set>.union(<coll.>)                   # Or: <set> | <set>
 <set>  = <set>.intersection(<coll.>)            # Or: <set> & <set>