Merge lp:~jelmer/brz/compatibility-typos into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/compatibility-typos
Merge into: lp:brz
Diff against target: 133 lines (+11/-11)
10 files modified
breezy/bundle/bundle_data.py (+1/-1)
breezy/bzr/inventorytree.py (+1/-1)
breezy/plugins/weave_fmt/test_workingtree.py (+1/-1)
breezy/tests/per_workingtree/test_workingtree.py (+1/-1)
breezy/tests/test_selftest.py (+1/-1)
breezy/workingtree.py (+1/-1)
doc/developers/development-repo.txt (+2/-2)
doc/developers/plans/performance/planned-performance-changes.txt (+1/-1)
doc/en/release-notes/bzr-0.12.txt (+1/-1)
doc/en/release-notes/bzr-0.16.txt (+1/-1)
To merge this branch: bzr merge lp:~jelmer/brz/compatibility-typos
Reviewer Review Type Date Requested Status
Martin Packman Approve
Review via email: mp+363008@code.launchpad.net

Commit message

Fix a commonly typoed word: compatibility.

Description of the change

Fix a commonly typoed word: compatibility.

To post a comment you must log in.
Revision history for this message
Martin Packman (gz) wrote :

Thanks. This is one of my common ones...

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'breezy/bundle/bundle_data.py'
2--- breezy/bundle/bundle_data.py 2019-01-01 21:23:40 +0000
3+++ breezy/bundle/bundle_data.py 2019-02-11 21:54:25 +0000
4@@ -769,7 +769,7 @@
5 return
6 entries = inv.iter_entries(from_dir=from_dir_id, recursive=recursive)
7 if inv.root is not None and not include_root and from_dir is None:
8- # skip the root for compatability with the current apis.
9+ # skip the root for compatibility with the current apis.
10 next(entries)
11 for path, entry in entries:
12 yield path, 'V', entry.kind, entry
13
14=== modified file 'breezy/bzr/inventorytree.py'
15--- breezy/bzr/inventorytree.py 2018-11-22 03:51:03 +0000
16+++ breezy/bzr/inventorytree.py 2019-02-11 21:54:25 +0000
17@@ -755,7 +755,7 @@
18 return
19 entries = inv.iter_entries(from_dir=from_dir_id, recursive=recursive)
20 if inv.root is not None and not include_root and from_dir is None:
21- # skip the root for compatability with the current apis.
22+ # skip the root for compatibility with the current apis.
23 next(entries)
24 for path, entry in entries:
25 yield path, 'V', entry.kind, entry
26
27=== modified file 'breezy/plugins/weave_fmt/test_workingtree.py'
28--- breezy/plugins/weave_fmt/test_workingtree.py 2018-05-27 16:53:07 +0000
29+++ breezy/plugins/weave_fmt/test_workingtree.py 2019-02-11 21:54:25 +0000
30@@ -41,7 +41,7 @@
31 url, format=BzrDirFormat6())
32
33 def test_conflicts(self):
34- # test backwards compatability
35+ # test backwards compatibility
36 tree = self.create_format2_tree('.')
37 self.assertRaises(errors.UnsupportedOperation, tree.set_conflicts,
38 None)
39
40=== modified file 'breezy/tests/per_workingtree/test_workingtree.py'
41--- breezy/tests/per_workingtree/test_workingtree.py 2018-11-20 08:21:11 +0000
42+++ breezy/tests/per_workingtree/test_workingtree.py 2019-02-11 21:54:25 +0000
43@@ -943,7 +943,7 @@
44 if tree.supports_setting_file_ids():
45 tree.add(['foo'], [b'foo-id'])
46 self.assertEqual(b'foo-id', tree.path2id('foo'))
47- # the next assertion is for backwards compatability with
48+ # the next assertion is for backwards compatibility with
49 # WorkingTree3, though its probably a bad idea, it makes things
50 # work. Perhaps it should raise a deprecation warning?
51 self.assertEqual(b'foo-id', tree.path2id('foo/'))
52
53=== modified file 'breezy/tests/test_selftest.py'
54--- breezy/tests/test_selftest.py 2019-02-02 15:13:30 +0000
55+++ breezy/tests/test_selftest.py 2019-02-11 21:54:25 +0000
56@@ -1603,7 +1603,7 @@
57 self.assertEqual([], result.failures)
58
59 def test_run_disabled_unittest_result(self):
60- """Test our compatability for disabled tests with unittest results."""
61+ """Test our compatibility for disabled tests with unittest results."""
62 test = SampleTestCase('_test_pass')
63
64 class DisabledFeature(object):
65
66=== modified file 'breezy/workingtree.py'
67--- breezy/workingtree.py 2019-01-01 21:56:21 +0000
68+++ breezy/workingtree.py 2019-02-11 21:54:25 +0000
69@@ -1082,7 +1082,7 @@
70 if not self.supports_setting_file_ids():
71 raise SettingFileIdUnsupported()
72 with self.lock_tree_write():
73- # for compatability
74+ # for compatibility
75 if file_id is None:
76 raise ValueError(
77 'WorkingTree.set_root_id with fileid=None')
78
79=== modified file 'doc/developers/development-repo.txt'
80--- doc/developers/development-repo.txt 2018-11-18 13:43:04 +0000
81+++ doc/developers/development-repo.txt 2019-02-11 21:54:25 +0000
82@@ -44,10 +44,10 @@
83 development version available before pulling in bzr.dev changes
84 around release time, as that is when old format cleanups will occur.
85
86-We cannot guarantee backwards compatability though, because some of the
87+We cannot guarantee backwards compatibility though, because some of the
88 planned work may be 'upgrade only'. Please see ``bzr help formats`` for
89 the text of the 'development' format which will indicate its
90-compatability with other formats if you need to interoperate with
91+compatibility with other formats if you need to interoperate with
92 users or services that do not have bzr.dev.
93
94 Before converting to a development format
95
96=== modified file 'doc/developers/plans/performance/planned-performance-changes.txt'
97--- doc/developers/plans/performance/planned-performance-changes.txt 2017-11-11 12:51:45 +0000
98+++ doc/developers/plans/performance/planned-performance-changes.txt 2019-02-11 21:54:25 +0000
99@@ -17,7 +17,7 @@
100 in widespread use at that time will be very important, otherwise the user base
101 may be split in two - users that have upgraded and users that have not.
102
103-The following changes are grouped according to their compatability impact:
104+The following changes are grouped according to their compatibility impact:
105 library only, disk format but interoperable, disk format interoperability
106 unknown, and disk format, not interoperable.
107
108
109=== modified file 'doc/en/release-notes/bzr-0.12.txt'
110--- doc/en/release-notes/bzr-0.12.txt 2010-10-08 08:15:14 +0000
111+++ doc/en/release-notes/bzr-0.12.txt 2019-02-11 21:54:25 +0000
112@@ -46,7 +46,7 @@
113 to allow modules to be loaded on request.
114 (John Arbash Meinel, Adeodato Simó)
115
116-API Incompatability
117+API Incompatibility
118 *******************
119
120 * LogFormatter subclasses show now expect the 'revno' parameter to
121
122=== modified file 'doc/en/release-notes/bzr-0.16.txt'
123--- doc/en/release-notes/bzr-0.16.txt 2010-11-12 22:43:38 +0000
124+++ doc/en/release-notes/bzr-0.16.txt 2019-02-11 21:54:25 +0000
125@@ -183,7 +183,7 @@
126 Internals
127 *********
128
129-* bzrlib API compatability with 0.8 has been dropped, cleaning up some
130+* bzrlib API compatibility with 0.8 has been dropped, cleaning up some
131 code paths. (Robert Collins)
132
133 * Change the format of chroot URLS so that they can be safely manipulated

Subscribers

People subscribed via source and target branches