From 0adfc4c871363760ae8cb71f4f24b1dd9a078b59 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Tue, 5 Mar 2024 11:18:16 -0800 Subject: [PATCH] Fix typo in githook 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', ); }