Browse Source

[trac978] Corrected some typos

Stephen Morris 14 years ago
parent
commit
d749aee2ec
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/lib/acl/loader.h
  2. 2 2
      src/lib/acl/tests/loader_test.cc

+ 1 - 1
src/lib/acl/loader.h

@@ -129,7 +129,7 @@ public:
         /**
          * \brief Creates the check.
          *
-         * This function does the actuall creation. It is passed all the
+         * This function does the actual creation. It is passed all the
          * relevant data and is supposed to return shared pointer to the
          * check.
          *

+ 2 - 2
src/lib/acl/tests/loader_test.cc

@@ -259,8 +259,8 @@ TEST_F(LoaderTest, CreatorDuplicity) {
     EXPECT_THROW(loader_.registerCreator(namedCreator("name")), LoaderError);
 }
 
-// Test that when it does not accet a duplicity, nothing is inserted
-TEST_F(LoaderTest, CreatorDuplicityUnchanged) {
+// Test that when it does not accept a duplicate, nothing is inserted
+TEST_F(LoaderTest, CreatorDuplicateUnchanged) {
     addNamed("name1");
     vector<string> names;
     names.push_back("name2");