Skip to content

Commit 2ba3d62

Browse files
committed
Format
1 parent d16bc31 commit 2ba3d62

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ value = <dict>.setdefault(key, default) # Same, but also adds default to di
7575
```
7676

7777
```python
78-
value = <dict>.pop(key) # Removes item from dictionary.
78+
value = <dict>.pop(key) # Removes item from dictionary.
7979
{k: v for k, v in <dict>.items() if k in keys} # Filters dictionary by keys.
8080
```
8181

@@ -325,11 +325,11 @@ Format
325325

326326
### General Options
327327
```python
328-
{<el>:<10} # '<el> '
329-
{<el>:>10} # ' <el>'
330-
{<el>:^10} # ' <el> '
331-
{<el>:->10} # '------<el>'
332-
{<el>:>0} # '<el>'
328+
{<el>:<10} # '<el> '
329+
{<el>:>10} # ' <el>'
330+
{<el>:^10} # ' <el> '
331+
{<el>:->10} # '------<el>'
332+
{<el>:>0} # '<el>'
333333
```
334334

335335
### String Options

0 commit comments

Comments
 (0)