aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-10-10 09:21:38 -0400
committerGennadiy Civil <misterg@google.com>2019-10-10 09:21:38 -0400
commitcb1d5db1a104c7161fce89483dcfbe0ccb9bb28b (patch)
treeb58ff93963fe15b329ccdcc141e74dc357ecc5ee /googletest/docs
parentcd17fa2abda2a2e4111cdabd62a87aea16835014 (diff)
parent3339b97c6a7fb908cd343ff8251d86782ea264a8 (diff)
downloadgoogletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.tar.gz
googletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.tar.bz2
googletest-cb1d5db1a104c7161fce89483dcfbe0ccb9bb28b.zip
Merge pull request #2448 from kuzkry:bad-googletest-export
PiperOrigin-RevId: 273585026
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index ef20379b..179118dc 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -465,7 +465,7 @@ You can call the function
to assert that types `T1` and `T2` are the same. The function does nothing if
the assertion is satisfied. If the types are different, the function call will
fail to compile, the compiler error message will say that
-`type1 and type2 are not the same type` and most likely (depending on the compiler)
+`T1 and T2 are not the same type` and most likely (depending on the compiler)
show you the actual values of `T1` and `T2`. This is mainly useful inside
template code.