diff options
author | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-27 19:02:11 +0000 |
---|---|---|
committer | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-27 19:02:11 +0000 |
commit | e8e285bb762580dff4e3c880a8ece9e1fa176d29 (patch) | |
tree | 4f4b72b06b0609a7e791ffedc016876e7a1c07dc /native_client_sdk/src/tools/getos.py | |
parent | d64e782fe945d6e0aac38ff1edfc4c9f67cbaa7c (diff) | |
download | chromium_src-e8e285bb762580dff4e3c880a8ece9e1fa176d29.zip chromium_src-e8e285bb762580dff4e3c880a8ece9e1fa176d29.tar.gz chromium_src-e8e285bb762580dff4e3c880a8ece9e1fa176d29.tar.bz2 |
[NaCl SDK] A bunch of spelling fixes.
Also, removed set_nacl_env.py from sdk_tools directory. It is unused.
BUG=none
R=sbc@chromium.org
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/13106002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190994 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk/src/tools/getos.py')
-rwxr-xr-x | native_client_sdk/src/tools/getos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native_client_sdk/src/tools/getos.py b/native_client_sdk/src/tools/getos.py index 6e2813c..bd312b4 100755 --- a/native_client_sdk/src/tools/getos.py +++ b/native_client_sdk/src/tools/getos.py @@ -118,13 +118,13 @@ def GetChromePath(): def GetNaClArch(platform): if platform == 'win': - # On windows the nacl arch always maches to system arch + # On windows the nacl arch always matches to system arch return GetSystemArch(platform) elif platform == 'mac': # On Mac the nacl arch is currently always 32-bit. return 'x86_32' - # On linux the nacl arch matches to chrome arch, so we inspect the chome + # On linux the nacl arch matches to chrome arch, so we inspect the chrome # binary using objdump chrome_path = GetChromePath() |