aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-09-16 19:11:20 +0200
committerKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-09-16 19:22:10 +0200
commit3339b97c6a7fb908cd343ff8251d86782ea264a8 (patch)
treed0e1033db402468d52290e8cf6476a9e9255a9eb /googletest/docs
parent7c2bd3af981e9f257a0b61ce664953008c105dad (diff)
downloadgoogletest-3339b97c6a7fb908cd343ff8251d86782ea264a8.tar.gz
googletest-3339b97c6a7fb908cd343ff8251d86782ea264a8.tar.bz2
googletest-3339b97c6a7fb908cd343ff8251d86782ea264a8.zip
square away the stuff that hasn't been merged in a manual review
This fixes up f2fb48c3 (a manual merge) that has abandoned some things from PR #2407.
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 3e5f779d..c30ef85e 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.