From 4568374a6e8461dbbdda548f5069032f52026a9f Mon Sep 17 00:00:00 2001 From: Vincent Palancher Date: Wed, 5 Jul 2017 14:12:58 +0200 Subject: [PATCH] Fixes a typo in FAQ.md --- googletest/docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.