Skip to content

Commit eca8be3

Browse files
committed
Fix typo
1 parent c8dc522 commit eca8be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Notes/02_Working_with_data/03_Formatting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ modeled after the C `printf()` as well.
115115
*Note: This is the only formatting available on byte strings.*
116116

117117
```python
118-
>>> b'%s has %n messages' % (b'Dave', 37)
118+
>>> b'%s has %d messages' % (b'Dave', 37)
119119
b'Dave has 37 messages'
120120
>>>
121121
```

0 commit comments

Comments
 (0)