Skip to content

Commit 663bb4b

Browse files
committed
Replaced 'dicionnary' with 'dictionary' everywhere
1 parent 6c453ad commit 663bb4b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

kivy/_event.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ cdef class EventDispatcher(ObjectWithUid):
372372
return self.__properties[name]
373373

374374
cpdef dict properties(EventDispatcher self):
375-
'''Return all the properties in that class in a dictionnary of
375+
'''Return all the properties in that class in a dictionary of
376376
key/property class. Can be used for introspection.
377377
378378
.. versionadded:: 1.0.9

kivy/core/audio/audio_pygame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
class SoundPygame(Sound):
3131

3232
# XXX we don't set __slots__ here, to automaticly add
33-
# a dictionnary. We need that to be able to use weakref for
33+
# a dictionary. We need that to be able to use weakref for
3434
# SoundPygame object. Otherwise, it failed with:
3535
# TypeError: cannot create weak reference to 'SoundPygame' object
3636
# We use our clock in play() method.

kivy/input/motionevent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ def on_touch_move(self, touch):
8989
from kivy.vector import Vector
9090

9191

92-
class EnhancedDictionnary(dict):
92+
class EnhancedDictionary(dict):
9393

9494
def __getattr__(self, attr):
9595
try:
9696
return self.__getitem__(attr)
9797
except KeyError:
98-
return super(EnhancedDictionnary, self).__getattr__(attr)
98+
return super(EnhancedDictionary, self).__getattr__(attr)
9999

100100
def __setattr__(self, attr, value):
101101
self.__setitem__(attr, value)
@@ -273,9 +273,9 @@ def __init__(self, device, id, args):
273273
#: .. versionadded:: 1.7.0
274274
self.triple_tap_time = 0
275275

276-
#: User data dictionnary. Use this dictionnary to save your own data on
276+
#: User data dictionary. Use this dictionary to save your own data on
277277
#: the touch.
278-
self.ud = EnhancedDictionnary()
278+
self.ud = EnhancedDictionary()
279279

280280
self.depack(args)
281281

kivy/lang.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ def _apply_rule(self, widget, rule, rootrule, template_ctx=None):
15731573

15741574
if Factory_is_template(cname):
15751575
# we got a template, so extract all the properties and
1576-
# handlers, and push them in a "ctx" dictionnary.
1576+
# handlers, and push them in a "ctx" dictionary.
15771577
ctx = {}
15781578
idmap = copy(global_idmap)
15791579
idmap.update({'root': rctx['ids']['root']})

kivy/storage/dictstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'''
2-
Dictionnary store
2+
Dictionary store
33
=================
44
5-
Use a Python dictionnary as a store.
5+
Use a Python dictionary as a store.
66
'''
77

88
__all__ = ('DictStore', )

0 commit comments

Comments
 (0)