aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/samples
diff options
context:
space:
mode:
authorHerbert Thielen <thielen@hs-worms.de>2017-08-05 12:42:00 +0200
committerHerbert Thielen <thielen@hs-worms.de>2017-08-05 12:42:00 +0200
commit212f4d793e5f019903d0c0b4c24e14341b641d8a (patch)
tree4bcfe3e93e8ef89260ebf7853221936672f23a34 /googletest/samples
parentca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f (diff)
downloadgoogletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.tar.gz
googletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.tar.bz2
googletest-212f4d793e5f019903d0c0b4c24e14341b641d8a.zip
fix small typo in comment
Diffstat (limited to 'googletest/samples')
-rw-r--r--googletest/samples/sample3_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/samples/sample3_unittest.cc b/googletest/samples/sample3_unittest.cc
index bf3877d0..a4fbe5a0 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);