aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2023-02-23 12:39:43 -0800
committerCopybara-Service <copybara-worker@google.com>2023-02-23 12:40:25 -0800
commitd0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce (patch)
tree484dea140b8b5e57916015eaf74b0e21f20be444 /docs
parent39a26e12d67ed6c21feeb606372bfee39a8e6d53 (diff)
downloadgoogletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.zip
googletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.tar.gz
googletest-d0ba3ccc7659a7af2ee5d2039f8e6978f35b67ce.tar.bz2
Added a missing semicolon for GTEST_FLAG_SET code snippet.
PiperOrigin-RevId: 511858980 Change-Id: I0f9e6ffdeb8ae809d662eb3ff46eab5a109a8d93
Diffstat (limited to 'docs')
-rw-r--r--docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced.md b/docs/advanced.md
index 7d15dfd..6b4c3f0 100644
--- a/docs/advanced.md
+++ b/docs/advanced.md
@@ -562,7 +562,7 @@ The automated testing framework does not set the style flag. You can choose a
particular style of death tests by setting the flag programmatically:
```c++
-GTEST_FLAG_SET(death_test_style, "threadsafe")
+GTEST_FLAG_SET(death_test_style, "threadsafe");
```
You can do this in `main()` to set the style for all death tests in the binary,