From f1afeaa6434812276d106c161f09bf9351a47d39 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 22 Oct 2019 10:33:51 -0400 Subject: [PATCH] Googletest export Typo in Registering tests programmatically section. Changed "were" to "where". PiperOrigin-RevId: 276060801 --- googletest/docs/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index 179118dc..5c34d262 100644 --- a/googletest/docs/advanced.md +++ b/googletest/docs/advanced.md @@ -1803,7 +1803,7 @@ For technical reasons, there are some caveats: ## Registering tests programmatically The `TEST` macros handle the vast majority of all use cases, but there are few -were runtime registration logic is required. For those cases, the framework +where runtime registration logic is required. For those cases, the framework provides the `::testing::RegisterTest` that allows callers to register arbitrary tests dynamically.