From 9aa8ceee994aedc05cc2e8f20f3a8f3ab14a78e3 Mon Sep 17 00:00:00 2001 From: Allister MacLeod Date: Tue, 24 Mar 2026 15:19:20 -0400 Subject: [PATCH 1/2] Delete trailing whitespace. --- cli/cli/Docs/Commands/init.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cli/Docs/Commands/init.md b/cli/cli/Docs/Commands/init.md index f9e73ad9c8..2a2aa1dbd9 100644 --- a/cli/cli/Docs/Commands/init.md +++ b/cli/cli/Docs/Commands/init.md @@ -8,5 +8,5 @@ This command can also be used to change the CID/PID of an existing `.beamable` f # Arg_path -By default, the {{title}} command creates a `.beamable` folder in the current directory. -However, the `path` argument configures where the `.beamable` folder is created. \ No newline at end of file +By default, the {{title}} command creates a `.beamable` folder in the current directory. +However, the `path` argument configures where the `.beamable` folder is created. From 8a6888e39bf0145fb75df0383fc0e503bd0527fe Mon Sep 17 00:00:00 2001 From: Allister MacLeod Date: Tue, 24 Mar 2026 15:22:15 -0400 Subject: [PATCH 2/2] Copy-editing: fix double spaces and Get/Set mislabel in CLI descriptions. - Remove stray space after \n\n in ClearTempLogFilesCommand --older-than description - Remove double space before "local routing key" in IFederatedGameServer Get and Set commands - Fix Set command description that incorrectly said "Get the local settings" Co-Authored-By: Claude Sonnet 4.6 --- .../LocalSettings_IFederatedGameServer_Commands.cs | 4 ++-- cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/cli/Commands/FederationCommands/LocalSettings/LocalSettings_IFederatedGameServer_Commands.cs b/cli/cli/Commands/FederationCommands/LocalSettings/LocalSettings_IFederatedGameServer_Commands.cs index 452dd2f92c..1841c61358 100644 --- a/cli/cli/Commands/FederationCommands/LocalSettings/LocalSettings_IFederatedGameServer_Commands.cs +++ b/cli/cli/Commands/FederationCommands/LocalSettings/LocalSettings_IFederatedGameServer_Commands.cs @@ -27,7 +27,7 @@ public class GetLocalSettingsIFederatedGameServerCommandArgs : CommandArgs, Fede public class GetLocalSettingsIFederatedGameServerCommand : AtomicCommand { - public GetLocalSettingsIFederatedGameServerCommand() : base(typeof(IFederatedGameServer<>).GetNameWithoutGenericArity(), $"Get the local settings for the {typeof(IFederatedGameServer<>)} local routing key") + public GetLocalSettingsIFederatedGameServerCommand() : base(typeof(IFederatedGameServer<>).GetNameWithoutGenericArity(), $"Get the local settings for the {typeof(IFederatedGameServer<>)} local routing key") { } @@ -82,7 +82,7 @@ public class SetLocalSettingsIFederatedGameServerCommandArgs : CommandArgs, Fede public class SetLocalSettingsIFederatedGameServerCommand : AtomicCommand { - public SetLocalSettingsIFederatedGameServerCommand() : base(typeof(IFederatedGameServer<>).GetNameWithoutGenericArity(), $"Get the local settings for the {typeof(IFederatedGameServer<>)} local routing key") + public SetLocalSettingsIFederatedGameServerCommand() : base(typeof(IFederatedGameServer<>).GetNameWithoutGenericArity(), $"Set the local settings for the {typeof(IFederatedGameServer<>)} local routing key") { } diff --git a/cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs b/cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs index 5f4f9c8194..b0acc8bfbf 100644 --- a/cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs +++ b/cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs @@ -27,7 +27,7 @@ public override void Configure() var olderThanOption = new Option( name: "--older-than", description: "Only clear logs older than a given value. " + - "This string should be in a duration format.\n\n " + + "This string should be in a duration format.\n\n" + "The duration format should be a number, followed by a time unit. Valid time units " + "include seconds (s), minutes (m), hours (h), days (d), and months(mo). Please note that " + "the month unit is short-hand for 30 days. " +