summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:29:28 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:29:28 +0100
commitfc1d7c00ecd4b9798803df0e8d1a698567b76e09 (patch)
tree45349b9bbc744e69a62ad463fc5596fabebddb9e /__pkginfo__.py
parent44df088ab01563758097794dd6361bd6c406e009 (diff)
downloadastroid-fc1d7c00ecd4b9798803df0e8d1a698567b76e09.tar.gz
include Dotan Barak spell fixes patch
Diffstat (limited to '__pkginfo__.py')
-rw-r--r--__pkginfo__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 0a86157..4912323 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -42,13 +42,13 @@ short_desc = "extend python's abstract syntax tree"
long_desc = """The aim of this module is to provide a common base \
representation of
python source code for projects such as pychecker, pyreverse,
-pylint... Well, actually the development of this library is essentialy
+pylint... Well, actually the development of this library is essentially
governed by pylint's needs.
It extends class defined in the compiler.ast [1] module (python <= 2.4) or in
the builtin _ast module (python >= 2.5) with some additional methods and
attributes. Instance attributes are added by a builder object, which can either
-generate extended ast (let's call them astng ;) by visiting an existant ast
+generate extended ast (let's call them astng ;) by visiting an existent ast
tree or by inspecting living object. Methods are added by monkey patching ast
classes."""