Skip to content

Commit f72d732

Browse files
committed
Fix uuid and toc
1 parent ee70d52 commit f72d732

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ So, here we go...
9292
* [Section: Miscellaneous](#section-miscellaneous)
9393
+ [`+=` is faster](#--is-faster)
9494
+ [▶ Let's make a giant string!](#-lets-make-a-giant-string)
95-
+ [`dict` lookup performance](#-slowing-down-dict-lookups)
95+
+ [Slowing down `dict` lookups *](#-slowing-down-dict-lookups)
9696
+ [▶ Minor Ones *](#-minor-ones-)
9797
- [Contributing](#contributing)
9898
- [Acknowledgements](#acknowledgements)
@@ -3349,8 +3349,8 @@ Let's increase the number of iterations by a factor of 10.
33493349
33503350
---
33513351
3352-
### ▶ Slowing down `dict` lookups
3353-
3352+
### ▶ Slowing down `dict` lookups *
3353+
<!-- Example ID: c9c26ce6-df0c-47f7-af0b-966b9386d4c3 --->
33543354
```py
33553355
some_dict = {str(i): 1 for i in range(1_000_000)}
33563356
another_dict = {str(i): 1 for i in range(1_000_000)}

0 commit comments

Comments
 (0)