From 9b98bce193fd3964970887d17cdb9d38416b614e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Jan 2026 21:15:00 +0100 Subject: [PATCH] Reword no network access response. --- profiler/src/profiler/TracyLlmTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyLlmTools.cpp b/profiler/src/profiler/TracyLlmTools.cpp index 4ac717af..27c761ca 100644 --- a/profiler/src/profiler/TracyLlmTools.cpp +++ b/profiler/src/profiler/TracyLlmTools.cpp @@ -17,7 +17,7 @@ #include "TracyUtility.hpp" #include "TracyWorker.hpp" -constexpr const char* NoNetworkAccess = "Internet access is disabled by the user. You may inform the user that he can enable it in the settings, so that you can use the tools to gather information."; +constexpr const char* NoNetworkAccess = "Internet access is disabled by the user. Inform the user that they may enable it in the settings, so that you can use the tools to gather information."; #define NetworkCheckString if( !m_netAccess ) return NoNetworkAccess #define NetworkCheckReply if( !m_netAccess ) return { .reply = NoNetworkAccess }