Merge lp:~mbp/bzr/doc into lp:bzr

Proposed by Martin Pool
Status: Merged
Approved by: Vincent Ladeuil
Approved revision: no longer in the source branch.
Merged at revision: 5297
Proposed branch: lp:~mbp/bzr/doc
Merge into: lp:bzr
Diff against target: 21 lines (+2/-2)
1 file modified
bzrlib/osutils.py (+2/-2)
To merge this branch: bzr merge lp:~mbp/bzr/doc
Reviewer Review Type Date Requested Status
Vincent Ladeuil Approve
Review via email: mp+27579@code.launchpad.net

Commit message

additional gnu doc style fixes

Description of the change

Just a couple more fixes towards https://bugs.edge.launchpad.net/bzr/+bug/528253 pointed out by Karl Berry.

To post a comment you must log in.
Revision history for this message
Vincent Ladeuil (vila) wrote :

Trivial enough to not even need a review, please land.

review: Approve
Revision history for this message
Martin Pool (mbp) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bzrlib/osutils.py'
2--- bzrlib/osutils.py 2010-05-27 17:59:18 +0000
3+++ bzrlib/osutils.py 2010-06-15 06:06:31 +0000
4@@ -1321,7 +1321,7 @@
5 def normalizes_filenames():
6 """Return True if this platform normalizes unicode filenames.
7
8- Mac OSX does, Windows/Linux do not.
9+ Only Mac OSX.
10 """
11 return _platform_normalizes_filenames
12
13@@ -1332,7 +1332,7 @@
14 On platforms where the system normalizes filenames (Mac OSX),
15 you can access a file by any path which will normalize correctly.
16 On platforms where the system does not normalize filenames
17- (Windows, Linux), you have to access a file by its exact path.
18+ (everything else), you have to access a file by its exact path.
19
20 Internally, bzr only supports NFC normalization, since that is
21 the standard for XML documents.