Skip to content

Commit 08ad2bc

Browse files
committed
Remove trailing space in documents
1 parent 5f58d1e commit 08ad2bc

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

FAQ

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Solutions:
2323

2424
* Enforce the usage of a stabilized API (practically, API 25) with::
2525

26-
env CFLAGS=-DFUSE_USE_VERSION=25 python setup.py build
26+
env CFLAGS=-DFUSE_USE_VERSION=25 python setup.py build
2727

2828
* Upgrade your FUSE installation. As of writing this, 2.6.0-pre3 is available.
2929

30-
When I use a dedicated file class, how can I tell apart the cases when an instance of it is instantiated from a ``CREATE`` callback and when it's instantiated from an ``OPEN`` callback?
30+
When I use a dedicated file class, how can I tell apart the cases when an instance of it is instantiated from a ``CREATE`` callback and when it's instantiated from an ``OPEN`` callback?
3131
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
3232

3333
If your file class is instantiated via ``FUSE_OPEN``, then it's

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ REQUIREMENTS:
33
- In general, Python 2.3 or newer.
44
Version specific notes:
55
- 2.4: this is the version the code is developed with, so you can
6-
expect this one to work the most smoothly.
7-
- 2.3: in general, it seems to be useable. However, the optparse
6+
expect this one to work the most smoothly.
7+
- 2.3: in general, it seems to be useable. However, the optparse
88
module of Python 2.3 is out of date. This doesn't have fatal
99
consequences, but if you want nice help optput / version info,
1010
you should either use optparse.py from 2.4 or install a recent

README.historic

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Updated 13-Dec-2003 by David McNab <david@rebirthing.co.nz>
3737

3838
- added 'code.leo' file for convenience of those who use the Leo
3939
code editor (leo.sf.net)
40-
40+
4141
- added support for 'statfs' and 'fsync' methods (refer xmp.py)
4242

4343
Updated Dec 2003 by David McNab <david@rebirthing.co.nz>:
44-
44+
4545
- added support for 'release' events (ie when file gets closed)
4646
- added __init__ to base class, which picks off parameters and
4747
stores them as instance attributes:

README.new_fusepy_api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Let's see how these are implemented.
111111
out of Python's, so raising an exception makes no sense. We could
112112
wrap some fs methods into format valifiers; currently we don't do
113113
that.)
114-
114+
115115
116116
FUSE and the command line
117117
-------------------------
@@ -316,7 +316,7 @@ options (which are not understood by the lib, according to the help
316316
message), and also purges out these from self, so the remainder can be
317317
safely passed down to FUSE.
318318

319-
.. [#] We can argue that it's not that sad. We just pass on to FUSE
319+
.. [#] We can argue that it's not that sad. We just pass on to FUSE
320320
what we get from the user and that either eats it or blows up. Why
321321
would we want more sophistication?
322322

0 commit comments

Comments
 (0)