summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp
diff options
context:
space:
mode:
authorKazuaki Ishizaki <ishizaki@jp.ibm.com>2020-01-04 10:28:41 -0500
committerAaron Ballman <aaron@aaronballman.com>2020-01-04 10:28:41 -0500
commitb7ecf1c1c373c53183ef6ef66efbe4237ff7b96d (patch)
tree02e12313b27fbae77d0097e26edbf030b0a2dbb2 /clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp
parentca8b20ca3ba10288b61a083c4ce57fb011124935 (diff)
downloadbcm5719-llvm-b7ecf1c1c373c53183ef6ef66efbe4237ff7b96d.tar.gz
bcm5719-llvm-b7ecf1c1c373c53183ef6ef66efbe4237ff7b96d.zip
NFC: Fix trivial typos in comments
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp')
-rw-r--r--clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp b/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp
index d39e697c6bd..d7650b1c87f 100644
--- a/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp
+++ b/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp
@@ -29,7 +29,7 @@ private:
} // namespace std
-// All of the following codesnippets should be valid with appropriate 'owner<>' anaylsis,
+// All of the following codesnippets should be valid with appropriate 'owner<>' analysis,
// but currently the type information of 'gsl::owner<>' gets lost in typededuction.
int main() {
std::vector<gsl::owner<int *>> OwnerStdVector(100, nullptr);
OpenPOWER on IntegriCloud