Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Sep 13, 2020
1 parent 03c4ade commit 067d8ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TwitchDownloaderCLI/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Options
public bool Timestamp { get; set; }
[Option("embed-emotes", HelpText = "Embed emotes into chat download.")]
public bool EmbedEmotes { get; set; }
[Option("backround-color", Default = "#111111", HelpText = "Color of background for chat render.")]
[Option("background-color", Default = "#111111", HelpText = "Color of background for chat render.")]
public string BackgroundColor { get; set; }
[Option("message-color", Default = "#ffffff", HelpText = "Color of messages for chat render.")]
public string MessageColor { get; set; }
Expand All @@ -55,7 +55,7 @@ class Options
public bool GenerateMask { get; set; }
[Option("outline-size", Default = 4, HelpText = "Size of outline in chat render.")]
public double OutlineSize { get; set; }
[Option('f', "font", Default = "ariel", HelpText = "Font to use in chat render.")]
[Option('f', "font", Default = "arial", HelpText = "Font to use in chat render.")]
public string Font { get; set; }
[Option("font-size", Default = 12, HelpText = "Size of font in chat render.")]
public double FontSize { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Embeds emotes into the JSON file so in the future when an emote is removed from
**-i/-\-input**
Path to JSON chat file input.

**-\-backround-color**
**-\-background-color**
(Default: #111111) Color of background in HEX string format.

**-\-message-color**
Expand Down

0 comments on commit 067d8ac

Please sign in to comment.