Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class GetLocalSettingsIFederatedGameServerCommandArgs : CommandArgs, Fede

public class GetLocalSettingsIFederatedGameServerCommand : AtomicCommand<GetLocalSettingsIFederatedGameServerCommandArgs, LocalSettings_IFederatedGameServer>
{
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")
{
}

Expand Down Expand Up @@ -82,7 +82,7 @@ public class SetLocalSettingsIFederatedGameServerCommandArgs : CommandArgs, Fede

public class SetLocalSettingsIFederatedGameServerCommand : AtomicCommand<SetLocalSettingsIFederatedGameServerCommandArgs, LocalSettings_IFederatedGameServer>
{
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")
{
}

Expand Down
2 changes: 1 addition & 1 deletion cli/cli/Commands/TempCommands/ClearTempLogFilesCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public override void Configure()
var olderThanOption = new Option<string>(
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. " +
Expand Down
4 changes: 2 additions & 2 deletions cli/cli/Docs/Commands/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
By default, the {{title}} command creates a `.beamable` folder in the current directory.
However, the `path` argument configures where the `.beamable` folder is created.
Loading