summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorHossein Ghahramanzadeh <hgsilverman@gmail.com>2022-01-06 14:46:11 (GMT)
committerHossein Ghahramanzadeh <hgsilverman@gmail.com>2022-01-06 14:46:52 (GMT)
commit29bc520e5bf164e20fbb1b35d1fa9f148cf6a854 (patch)
treeb332bc910e1ffb644511ad6316d8fb8c8235ee1c /googletest/src
parent4fc151ae6910c250329f72d9254b4a32634c696a (diff)
downloadgoogletest-29bc520e5bf164e20fbb1b35d1fa9f148cf6a854.zip
googletest-29bc520e5bf164e20fbb1b35d1fa9f148cf6a854.tar.gz
googletest-29bc520e5bf164e20fbb1b35d1fa9f148cf6a854.tar.bz2
Fix a typo in comments.refs/pull/3615/head
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
index 54814d8..ae611f9 100644
--- a/googletest/src/gtest.cc
+++ b/googletest/src/gtest.cc
@@ -729,7 +729,7 @@ class UnitTestFilter {
public:
UnitTestFilter() = default;
- // Constructs a filter form a string of patterns separated by `:`.
+ // Constructs a filter from a string of patterns separated by `:`.
explicit UnitTestFilter(const std::string& filter) {
// By design "" filter matches "" string.
SplitString(filter, ':', &patterns_);