diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-07-24 20:07:02 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-24 22:31:20 +0200 |
commit | 60714bb2ed7060b859a49abea8471950b9878bf8 (patch) | |
tree | 87f915f40d6acaa4acb5c686b64ba953dbfde0c6 /support/scripts | |
parent | 07f0c8ab25847bc3120f3fd99945680ea030daaa (diff) | |
download | buildroot-60714bb2ed7060b859a49abea8471950b9878bf8.tar.gz buildroot-60714bb2ed7060b859a49abea8471950b9878bf8.zip |
trivial: fix typo 'informations'
In English, unlike in French, almost all usages of the word 'information'
are uncountable, meaning that 'informations' is invalid.
This patch fixes this typo throughout the tree, except in CHANGES and
docs/news.html (historic text).
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/scripts')
-rwxr-xr-x | support/scripts/xorg-release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/scripts/xorg-release b/support/scripts/xorg-release index a4f090d1d9..66fc100b5e 100755 --- a/support/scripts/xorg-release +++ b/support/scripts/xorg-release @@ -101,7 +101,7 @@ def buildroot_get_version(dirname): return m.group(2) return None -# Augment the informations of the X.org list of packages (given as +# Augment the information of the X.org list of packages (given as # argument) by details about their packaging in Buildroot. Those # details are found by looking at the contents of package/x11r7/. def get_buildroot_pkgs(packages): @@ -114,7 +114,7 @@ def get_buildroot_pkgs(packages): version = buildroot_get_version(d) if packages.has_key(pkgname): # There is a X.org package of the same name, so we just - # add informations to the existing dict entry. + # add information to the existing dict entry. packages[pkgname]['br-version'] = version packages[pkgname]['br-name'] = d else: |