Skip to content

Commit

Permalink
fix: typo of open-file command option description (dotnet#8938)
Browse files Browse the repository at this point in the history
Fix typo in open-file command option description
  • Loading branch information
filzrev authored and p-kostov committed Jun 28, 2024
1 parent c814ac7 commit 73d31eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/docfx/Models/BuildCommandOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ internal class BuildCommandOptions : LogOptions
[CommandOption("--open-browser")]
public bool OpenBrowser { get; set; }

[Description("Open a file in a web browser When the hosted website starts,")]
[Description("Open a file in a web browser when the hosted website starts.")]
[CommandOption("--open-file <RELATIVE_PATH>")]
public string OpenFile { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/docfx/Models/ServeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal class Settings : CommandSettings
[CommandOption("--open-browser")]
public bool OpenBrowser { get; set; }

[Description("Open a file in a web browser When the hosted website starts,")]
[Description("Open a file in a web browser when the hosted website starts.")]
[CommandOption("--open-file <RELATIVE_PATH>")]
public string OpenFile { get; set; }
}
Expand Down

0 comments on commit 73d31eb

Please sign in to comment.