summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorVincent Palancher <vincent.palancher@gmail.com>2017-07-05 12:12:58 (GMT)
committerGitHub <noreply@github.com>2017-07-05 12:12:58 (GMT)
commit4568374a6e8461dbbdda548f5069032f52026a9f (patch)
tree136d43cabe027ec491d67daf5cdc6a204d846f38 /googletest
parent4bab34d2084259cba67f3bfb51217c10d606e175 (diff)
downloadgoogletest-4568374a6e8461dbbdda548f5069032f52026a9f.zip
googletest-4568374a6e8461dbbdda548f5069032f52026a9f.tar.gz
googletest-4568374a6e8461dbbdda548f5069032f52026a9f.tar.bz2
Fixes a typo in FAQ.mdrefs/pull/1143/head
Diffstat (limited to 'googletest')
-rw-r--r--googletest/docs/FAQ.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/FAQ.md b/googletest/docs/FAQ.md
index 5fd6cb7..7d1caf6 100644
--- a/googletest/docs/FAQ.md
+++ b/googletest/docs/FAQ.md
@@ -54,7 +54,7 @@ Underscore (`_`) is special, as C++ reserves the following to be used by
the compiler and the standard library:
1. any identifier that starts with an `_` followed by an upper-case letter, and
- 1. any identifier that containers two consecutive underscores (i.e. `__`) _anywhere_ in its name.
+ 1. any identifier that contains two consecutive underscores (i.e. `__`) _anywhere_ in its name.
User code is _prohibited_ from using such identifiers.