diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-05 10:42:00 (GMT) |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-08-05 10:42:00 (GMT) |
commit | 212f4d793e5f019903d0c0b4c24e14341b641d8a (patch) | |
tree | 4bcfe3e93e8ef89260ebf7853221936672f23a34 /googletest | |
parent | ca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f (diff) | |
download | googletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.zip googletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.tar.gz googletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.tar.bz2 |
fix small typo in commentrefs/pull/1176/head
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/samples/sample3_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/samples/sample3_unittest.cc b/googletest/samples/sample3_unittest.cc index bf3877d..a4fbe5a 100644 --- a/googletest/samples/sample3_unittest.cc +++ b/googletest/samples/sample3_unittest.cc @@ -72,7 +72,7 @@ class QueueTest : public testing::Test { // accessed from sub-classes. // virtual void SetUp() will be called before each test is run. You - // should define it if you need to initialize the varaibles. + // should define it if you need to initialize the variables. // Otherwise, this can be skipped. virtual void SetUp() { q1_.Enqueue(1); |