summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2011-09-26 11:36:34 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2011-09-26 11:36:34 +0200
commit2d13963f897afc927f974de0370057bcf2113e62 (patch)
treeec82ac8123dc0a399722eba3d4cd0c2335c6afa9
parent8b8a58ca17f97eda64ca7a253d3cc11893508ac1 (diff)
downloadlogilab-common-2d13963f897afc927f974de0370057bcf2113e62.tar.gz
fix typo
-rw-r--r--compat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat.py b/compat.py
index da06a54..47ef25c 100644
--- a/compat.py
+++ b/compat.py
@@ -20,7 +20,7 @@
2.5, making them available in for earlier versions of python.
See another compatibility snippets from other projects:
-
+
:mod:`lib2to3.fixes`
:mod:`coverage.backward`
:mod:`unittest2.compatibility`
@@ -51,7 +51,7 @@ else:
def str_encode(string, encoding):
return str(string)
-# XXX callable builti-in seems back in all python versions
+# XXX callable built-in seems back in all python versions
try:
callable = builtins.callable
except AttributeError: