Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Aug 15, 2016
1 parent 5c3e846 commit f3f0c83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ stdlib.
import os
from senf import fsnative, print_

# This supports unicode file names under Py2/3 on Linux/macOS/Window
# This supports unicode file names under Py2/3 on Linux/macOS/Windows
for entry in os.listdir(fsnative(u"my_dir")):
print_(u"File: ", entry)

Expand All @@ -57,7 +57,7 @@ It introduces a virtual type called `fsnative` which actually represents
- `unicode` under Py2 + Windows
- `str` under Py2 on other platforms
- `str` under Py3 + Windows
- `str` + ``surrogateescape`` under Py3 on other platforms [#]_
- `str` + ``surrogates`` under Py3 on other platforms [#]_

The type is used for file names, environment variables and process arguments
and senf provides functions so you can tread it as an opaque type and not have
Expand Down

0 comments on commit f3f0c83

Please sign in to comment.