| commit | 6d2315cd1916ff6bc9ab3d6b3415e29da31df64d | [log] [tgz] |
|---|---|---|
| author | Timothy Gu <[email protected]> | Fri Oct 24 23:40:51 2025 |
| committer | GitHub <[email protected]> | Fri Oct 24 23:40:51 2025 |
| tree | 421f8bd07b771585ebc4cefdc851187660a1940a | |
| parent | bf296ed553ea1715656054a7f64ac6a6dd161360 [diff] |
spec: fix typo (#616) Signed-off-by: Timothy Gu <[email protected]>
diff --git a/doc/spec.md b/doc/spec.md index c5c1e71..29a38cb 100644 --- a/doc/spec.md +++ b/doc/spec.md
@@ -3466,7 +3466,7 @@ x.setdefault("three", 0) # 0 x # {"one": 1, "two": 2, "three": 0} x.setdefault("four") # None -x # {"one": 1, "two": 2, "three": None} +x # {"one": 1, "two": 2, "three": 0, "four": None} ``` <a id='dict·update'></a>