diff options
author | Alex Thiessen <alex.thiessen.de+github@gmail.com> | 2024-11-15 13:04:41 (GMT) |
---|---|---|
committer | Alex Thiessen <alex.thiessen.de+github@gmail.com> | 2024-11-15 15:07:51 (GMT) |
commit | 8a43edd4bfb38fd379206dbc8b085fc259461ce6 (patch) | |
tree | 681d899b12110036f49e3194ea07cffd07241cce | |
parent | ff44c3b4649ca0c0814399ffe535540f3ba4f612 (diff) | |
download | SCons-8a43edd4bfb38fd379206dbc8b085fc259461ce6.zip SCons-8a43edd4bfb38fd379206dbc8b085fc259461ce6.tar.gz SCons-8a43edd4bfb38fd379206dbc8b085fc259461ce6.tar.bz2 |
*.xml: Capitalize proper nouns
Refer to
https://en.wikipedia.org/wiki/Proper_noun#Modern_English_capitalization_of_proper_nouns.
> In modern English orthography, it is the norm for recognized proper
> names to be capitalized.
-rw-r--r-- | SCons/Tool/lex.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/msvs.xml | 2 | ||||
-rw-r--r-- | doc/user/gettext.xml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/SCons/Tool/lex.xml b/SCons/Tool/lex.xml index 5bc0e30..028072b 100644 --- a/SCons/Tool/lex.xml +++ b/SCons/Tool/lex.xml @@ -123,7 +123,7 @@ command-line option. Use this in preference to including <cvar name="LEXUNISTD"> <summary> <para> -Used only on windows environments to set a lex flag to prevent 'unistd.h' from being included. The default value is '--nounistd'. +Used only in Windows environments to set a lex flag to prevent 'unistd.h' from being included. The default value is '--nounistd'. </para> </summary> </cvar> diff --git a/SCons/Tool/msvs.xml b/SCons/Tool/msvs.xml index 8ccd8d7..392dd73 100644 --- a/SCons/Tool/msvs.xml +++ b/SCons/Tool/msvs.xml @@ -438,7 +438,7 @@ V10DebugSettings = { } # -# 3. Select the dictionary you want depending on the version of visual Studio +# 3. Select the dictionary you want depending on the version of Visual Studio # Files you want to generate. # if not env.GetOption('userfile'): diff --git a/doc/user/gettext.xml b/doc/user/gettext.xml index 5abebf9..73cb1ae 100644 --- a/doc/user/gettext.xml +++ b/doc/user/gettext.xml @@ -95,7 +95,7 @@ hello = Program(["hello.c"]) http://ftp.gnu.org/gnu/gettext/</ulink>. For the purpose of this example, you should have following three locales installed on your system: <literal>en_US</literal>, <literal>de_DE</literal> and - <literal>pl_PL</literal>. On debian, for example, you may enable certain + <literal>pl_PL</literal>. On Debian, for example, you may enable certain locales through <command>dpkg-reconfigure locales</command>. </para> @@ -231,7 +231,7 @@ scons: done building targets. these files under <filename>locale</filename> folder. </para> <para> - Your program should be now ready. You may try it as follows (linux): + Your program should be now ready. You may try it as follows (Linux): <screen> user@host:$ LANG=en_US.UTF-8 ./hello Welcome to beautiful world |