aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-07-26 13:36:51 -0400
committerGitHub <noreply@github.com>2017-07-26 13:36:50 -0400
commitb9427ca47731cba34a08d97e9bd49e78dcfeeee8 (patch)
tree76279b0534baaa43976c4cc4512a54df8264e852
parent7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08 (diff)
parent4568374a6e8461dbbdda548f5069032f52026a9f (diff)
downloadgoogletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.tar.gz
googletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.tar.bz2
googletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.zip
Merge pull request #1143 from nyibbang/patch-1
Fixes a typo in FAQ.md
-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 5fd6cb72..7d1caf6a 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.