diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-07-26 17:36:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-26 17:36:50 (GMT) |
commit | b9427ca47731cba34a08d97e9bd49e78dcfeeee8 (patch) | |
tree | 76279b0534baaa43976c4cc4512a54df8264e852 | |
parent | 7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08 (diff) | |
parent | 4568374a6e8461dbbdda548f5069032f52026a9f (diff) | |
download | googletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.zip googletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.tar.gz googletest-b9427ca47731cba34a08d97e9bd49e78dcfeeee8.tar.bz2 |
Merge pull request #1143 from nyibbang/patch-1
Fixes a typo in FAQ.md
-rw-r--r-- | googletest/docs/FAQ.md | 2 |
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. |