Skip to content
This repository has been archived by the owner on Jul 24, 2021. It is now read-only.

Fix typo in the help message. #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions src/Docu.Console/Console/HelpMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class HelpMessage : IScreenMessage
{
public IEnumerable<string> GetBody()
{
yield return "usuage: docu pattern.dll [pattern.dll ...] [pattern.xml ...]";
yield return "usage: docu pattern.dll [pattern.dll ...] [pattern.xml ...]";
yield return "";
yield return " * One or more dll matching patterns can be specified,";
yield return " e.g. MyProject*.dll or MyProject.dll";
Expand All @@ -19,4 +19,4 @@ public IEnumerable<string> GetBody()
yield return " --output=value Sets the output path to value";
}
}
}
}