Skip to content

Commit

Permalink
doc: revisions to context.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Zen-CODE committed Nov 19, 2013
1 parent 9936003 commit adbf55a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kivy/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This is experimental and subject to change as long as this warning notice
is present.
Kivy have few "global" instances that is used directly by many piece of the
Kivy has a few "global" instances that are used directly by many pieces of the
framework: `Cache`, `Builder`, `Clock`.
TODO: document this module.
Expand Down Expand Up @@ -77,7 +77,7 @@ def pop(self):


def register_context(name, cls, *args, **kwargs):
'''Register a new context
'''Register a new context.
'''
instance = cls(*args, **kwargs)
proxy = ProxyContext(instance)
Expand All @@ -91,7 +91,7 @@ def register_context(name, cls, *args, **kwargs):


def get_current_context():
'''Return the current context
'''Return the current context.
'''
if not _context_stack:
return _default_context
Expand Down

0 comments on commit adbf55a

Please sign in to comment.