Skip to content

Commit

Permalink
Speling.
Browse files Browse the repository at this point in the history
  • Loading branch information
khink committed May 10, 2013
1 parent 9fb90b7 commit 8c1421f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ExtensionClass/ExtensionClass.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ static PyExtensionClass NAME ## Type = { PyObject_HEAD_INIT(NULL) 0, # NAME, \
(PyMethod_Check((M)) ? ((PyMethodObject*)(M))->im_self : NULL)

/* Check whether an object has an __of__ method for returning itself
in the context of it's container. */
in the context of its container. */
#define has__of__(O) (PyObject_TypeCheck((O)->ob_type, ECExtensionClassType) \
&& (O)->ob_type->tp_descr_get != NULL)

Expand Down
2 changes: 1 addition & 1 deletion src/AccessControl/SpecialUsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""Place to find special users
This is needed to avoid a circular import problem. The 'real' values
are stored here by the AccessControl.User module as part of it's
are stored here by the AccessControl.User module as part of its
initialization.
"""

Expand Down
2 changes: 1 addition & 1 deletion src/AccessControl/cAccessControl.c
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ static PyObject *ZopeSecurityPolicy_validate(PyObject *self, PyObject *args) {
/*| # We have an object without roles and we didn't get
**| # a list of roles passed in. Presumably, the value
**| # is some simple object like a string or a list.
**| # We'll try to get roles from it's container
**| # We'll try to get roles from its container
**|
**| if container is None: raise Unauthorized(name, value)
*/
Expand Down

0 comments on commit 8c1421f

Please sign in to comment.