Skip to content

Commit

Permalink
s/informations/information/g
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Nov 30, 2011
1 parent deee639 commit b440b3b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pgxnclient 0.3
additional commands to be implemented in external scripts and in any
language.
- commands accept extension names too, not only specs.
- Added ``help`` command to get informations about program and commands.
- Added ``help`` command to get information about program and commands.


pgxnclient 0.2.1
Expand Down
2 changes: 1 addition & 1 deletion docs/ext.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In order to add new builtin commands, add a Python module into the
``pgxnclient/commands`` containing your command or a set of logically-related
commands. The commands are implemented by subclassing the `!Command` class.
Your commands will benefit of all the infrastructure available for the other
commands. For up-to-date informations take a look at the implementation of
commands. For up-to-date information take a look at the implementation of
builtin simple commands, such as the ones in ``info.py``.

If you are not into Python and want to add commands written in other
Expand Down
6 changes: 3 additions & 3 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ for all the known mirrors using the ``--detailed`` option.
``pgxn help``
-------------

Display help and other program informations.
Display help and other program information.

Usage:

Expand All @@ -466,12 +466,12 @@ Usage:
pgxn help [--help] [--all | --libexec | *CMD*]
Without options show the same informations obtained by ``pgxn --help``, which
Without options show the same information obtained by ``pgxn --help``, which
includes a list of builtin commands. With the ``--all`` option print the
complete list of commands installed in the system.

The option ``--libexec`` prints the full path of the directory containing
the external commands scripts: see :ref:`extending` for more informations.
the external commands scripts: see :ref:`extending` for more information.

:samp:`pgxn help {CMD}` is an alias for :samp:`pgxn {CMD} --help`.

2 changes: 1 addition & 1 deletion pgxnclient/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def __make_subparser(self, parser, subparsers,
default = 'http://api.pgxn.org/',
help = _("the mirror to interact with [default: %(default)s]"))
glb.add_argument("--verbose", action='store_true',
help = _("print more informations"))
help = _("print more information"))
glb.add_argument("--yes", action='store_true',
help = _("assume affirmative answer to all questions"))

Expand Down
2 changes: 1 addition & 1 deletion pgxnclient/commands/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class Help(Command):
name = 'help'
description = N_("display help and other program informations")
description = N_("display help and other program information")

@classmethod
def customize_parser(self, parser, subparsers, **kwargs):
Expand Down
4 changes: 2 additions & 2 deletions pgxnclient/commands/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class Mirror(Command):
name = 'mirror'
description = N_("return informations about the available mirrors")
description = N_("return information about the available mirrors")

@classmethod
def customize_parser(self, parser, subparsers, **kwargs):
Expand Down Expand Up @@ -121,7 +121,7 @@ def clean_excerpt(self, excerpt):

class Info(WithSpec, Command):
name = 'info'
description = N_("print informations about a distribution")
description = N_("print information about a distribution")

@classmethod
def customize_parser(self, parser, subparsers, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion pgxnclient/libexec/README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This directory contains the PGXN Client builtin commands. If you want to
extend the client with your own command, please use the directory returned by
``pgxn help --libexec``. See the documentation for further informations about
``pgxn help --libexec``. See the documentation for further information about
how to create new commands.

Note that setuptools doesn't do a perfect job and replaces the links with the
Expand Down

0 comments on commit b440b3b

Please sign in to comment.