Skip to content

Commit 5599320

Browse files
authored
Merge pull request gto76#11 from mdevlin72/master
Slight correction to <str>.strip descriptions
2 parents 5250e65 + f5ca9b2 commit 5599320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ from numbers import Number, Integral, Real, Rational, Complex
226226
String
227227
------
228228
```python
229-
<str> = <str>.strip() # Strips all whitespace characters.
230-
<str> = <str>.strip('<chars>') # Strips all passed characters.
229+
<str> = <str>.strip() # Strips all whitespace characters from start and end.
230+
<str> = <str>.strip('<chars>') # Strips all passed characters from start and end.
231231
```
232232

233233
```python

0 commit comments

Comments
 (0)