diff options
author | simransinghal <singhalsimran0@gmail.com> | 2018-03-25 15:15:49 +0200 |
---|---|---|
committer | Simran Singhal <singhalsimran0@gmail.com> | 2018-03-25 15:20:23 +0200 |
commit | f3b3bcfbc9285eea7ecfb32661b27b320469e3d0 (patch) | |
tree | f066b08396f392fe5165c50872feaccb77c2064d /src/test | |
parent | Merge pull request #21002 from smithfarm/wip-23437 (diff) | |
download | ceph-f3b3bcfbc9285eea7ecfb32661b27b320469e3d0.tar.xz ceph-f3b3bcfbc9285eea7ecfb32661b27b320469e3d0.zip |
src: Fix typo
Replace "dont" with "don't". "Dont" is not same as "Do not" or "Don't".
Signed-off-by: Simran Singhal <singhalsimran0@gmail.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/librgw_file.cc | 2 | ||||
-rw-r--r-- | src/test/librgw_file_aw.cc | 2 | ||||
-rw-r--r-- | src/test/librgw_file_cd.cc | 2 | ||||
-rw-r--r-- | src/test/librgw_file_gp.cc | 2 | ||||
-rw-r--r-- | src/test/librgw_file_marker.cc | 2 | ||||
-rw-r--r-- | src/test/librgw_file_nfsns.cc | 2 | ||||
-rw-r--r-- | src/test/test_rgw_ldap.cc | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/test/librgw_file.cc b/src/test/librgw_file.cc index cd8d997ae49..3689a052903 100644 --- a/src/test/librgw_file.cc +++ b/src/test/librgw_file.cc @@ -273,7 +273,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/librgw_file_aw.cc b/src/test/librgw_file_aw.cc index 337cd25a03b..3e38728b7c4 100644 --- a/src/test/librgw_file_aw.cc +++ b/src/test/librgw_file_aw.cc @@ -414,7 +414,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/librgw_file_cd.cc b/src/test/librgw_file_cd.cc index 9b6af4b6a87..b779f044d20 100644 --- a/src/test/librgw_file_cd.cc +++ b/src/test/librgw_file_cd.cc @@ -187,7 +187,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/librgw_file_gp.cc b/src/test/librgw_file_gp.cc index 2b591e46898..e48952a85d8 100644 --- a/src/test/librgw_file_gp.cc +++ b/src/test/librgw_file_gp.cc @@ -471,7 +471,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/librgw_file_marker.cc b/src/test/librgw_file_marker.cc index 87aa30fb3bd..a29c8e1f7d2 100644 --- a/src/test/librgw_file_marker.cc +++ b/src/test/librgw_file_marker.cc @@ -476,7 +476,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/librgw_file_nfsns.cc b/src/test/librgw_file_nfsns.cc index fdb78599a57..c76555b7208 100644 --- a/src/test/librgw_file_nfsns.cc +++ b/src/test/librgw_file_nfsns.cc @@ -1179,7 +1179,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if ((access_key == "") || (secret_key == "")) { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; diff --git a/src/test/test_rgw_ldap.cc b/src/test/test_rgw_ldap.cc index 7a6c5a8e611..42629bab95c 100644 --- a/src/test/test_rgw_ldap.cc +++ b/src/test/test_rgw_ldap.cc @@ -103,7 +103,7 @@ int main(int argc, char *argv[]) } } - /* dont accidentally run as anonymous */ + /* don't accidentally run as anonymous */ if (access_key == "") { std::cout << argv[0] << " no AWS credentials, exiting" << std::endl; return EPERM; |