Skip to content

Commit 8852e1c

Browse files
authored
Fix small error in readme (drivendataorg#8)
Maybe I misunderstood but my impression is that the `.path` accessor was added on the LHS, not the RHS.
1 parent 34c508b commit 8852e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ pd.Series(['a', 'b', 'c']) / pd.Series(['1', '2', '3']).path
271271
# dtype: object
272272
```
273273

274-
Instead, use the path accessor on the right-hand side as well.
274+
Instead, use the path accessor on the left-hand side as well.
275275

276276
```python
277277
pd.Series(['a', 'b', 'c']).path / pd.Series(['1', '2', '3']).path

0 commit comments

Comments
 (0)