From 5c18d5a432f7cbd9c387e8504ab3ce4e02d3a454 Mon Sep 17 00:00:00 2001 From: Tong Mu Date: Tue, 5 Mar 2024 11:13:52 -0800 Subject: [PATCH] Fix typo in the gclient reminder message --- tools/githooks/lib/src/messages.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/githooks/lib/src/messages.dart b/tools/githooks/lib/src/messages.dart index d524404cf5408..787a8a134be51 100644 --- a/tools/githooks/lib/src/messages.dart +++ b/tools/githooks/lib/src/messages.dart @@ -14,6 +14,6 @@ void printGclientSyncReminder(String command) { final String postfix = io.stdout.supportsAnsiEscapes ? _reset : ''; io.stderr.writeln('$command: The engine source tree has been updated.'); io.stderr.writeln( - '\n${prefix}You man need to run "gclient sync -D"$postfix\n', + '\n${prefix}You may need to run "gclient sync -D"$postfix\n', ); }