From 27c6098c2b2e0797ecb2cae2c3e7328d3855279a Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Mon, 16 Mar 2026 15:33:34 -0700 Subject: [PATCH] [locator] fix doc for `GetProvider::Get()` implementation location (#12690) --- src/core/common/locator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/common/locator.hpp b/src/core/common/locator.hpp index 5fa81d49f..efa18b3b3 100644 --- a/src/core/common/locator.hpp +++ b/src/core/common/locator.hpp @@ -90,7 +90,7 @@ public: * * @returns A reference to the `Type` object of the instance. */ - template inline Type &Get(void) const; // Implemented in `locator_getters.hpp`. + template inline Type &Get(void) const; // Implemented in `instance.hpp`. protected: GetProvider(void) = default;