diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-01-19 12:37:16 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-01-19 12:37:16 -0800 |
commit | 88c810ed0969924b8667976b985061644b4b3b02 (patch) | |
tree | 8c3c2bdf3119c73cdebf30a17b11823f4667b0b9 /lib | |
parent | 9be37da077158c43eb0c2f6b190773772dfa9ef5 (diff) | |
parent | 6c9800bcc395ecbc319f4a3f6242efee4b972470 (diff) | |
download | spack-88c810ed0969924b8667976b985061644b4b3b02.tar.gz spack-88c810ed0969924b8667976b985061644b4b3b02.tar.bz2 spack-88c810ed0969924b8667976b985061644b4b3b02.tar.xz spack-88c810ed0969924b8667976b985061644b4b3b02.zip |
Merge pull request #377 from mathstuf/fix-typos
typos: fix some letter transposes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/deactivate.py | 2 | ||||
-rw-r--r-- | lib/spack/spack/database.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/deactivate.py b/lib/spack/spack/cmd/deactivate.py index a0c78bf755..d6b23d6a08 100644 --- a/lib/spack/spack/cmd/deactivate.py +++ b/lib/spack/spack/cmd/deactivate.py @@ -37,7 +37,7 @@ def setup_parser(subparser): help="Run deactivation even if spec is NOT currently activated.") subparser.add_argument( '-a', '--all', action='store_true', - help="Deactivate all extensions of an extendable pacakge, or " + help="Deactivate all extensions of an extendable package, or " "deactivate an extension AND its dependencies.") subparser.add_argument( 'spec', nargs=argparse.REMAINDER, help="spec of package extension to deactivate.") diff --git a/lib/spack/spack/database.py b/lib/spack/spack/database.py index 0fa18db34b..9cbe7de44a 100644 --- a/lib/spack/spack/database.py +++ b/lib/spack/spack/database.py @@ -489,7 +489,7 @@ class Database(object): 1. Marks the spec as not installed. 2. Removes the spec if it has no more dependents. 3. If removed, recursively updates dependencies' ref counts - and remvoes them if they are no longer needed. + and removes them if they are no longer needed. """ # Take a lock around the entire removal. |