summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-07-09 19:58:46 (GMT)
committerCopybara-Service <copybara-worker@google.com>2024-07-09 19:59:38 (GMT)
commit3ef16ef8b30f52a8f1ff677faa1730e76835aa40 (patch)
treeb9ba35eb745880c0dabfe948a8282b6b6fd25abb
parent34ad51b3dc4f922d8ab622491dd44fc2c39afee9 (diff)
downloadgoogletest-3ef16ef8b30f52a8f1ff677faa1730e76835aa40.zip
googletest-3ef16ef8b30f52a8f1ff677faa1730e76835aa40.tar.gz
googletest-3ef16ef8b30f52a8f1ff677faa1730e76835aa40.tar.bz2
Fix the documentation that erroneously says you can use short versions
of help flags Fixes #4564 PiperOrigin-RevId: 650730047 Change-Id: I3a52aca490338066c607e34ab20c827bfde5090d
-rw-r--r--docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced.md b/docs/advanced.md
index 2ecce63..240588a 100644
--- a/docs/advanced.md
+++ b/docs/advanced.md
@@ -1814,7 +1814,7 @@ and/or command line flags. For the flags to work, your programs must call
`::testing::InitGoogleTest()` before calling `RUN_ALL_TESTS()`.
To see a list of supported flags and their usage, please run your test program
-with the `--help` flag. You can also use `-h`, `-?`, or `/?` for short.
+with the `--help` flag.
If an option is specified both by an environment variable and by a flag, the
latter takes precedence.