Skip to content

Commit

Permalink
Tame stray spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jan 28, 2022
1 parent 1f61af1 commit 494d5cf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions AltCover.Engine/Abstract.fs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module Abstract =
///</summary>
abstract member SummaryFormat : String with get
///<summary>
/// Corresponds to command line option ` -q`
/// Corresponds to command line option `-q`
///</summary>
abstract member Verbosity : System.Diagnostics.TraceLevel with get
end
Expand Down Expand Up @@ -125,7 +125,7 @@ module Abstract =
type IPrepareOptions =
interface
///<summary>
/// Corresponds to command line option ` -i, --inputDirectory=VALUE`
/// Corresponds to command line option `-i, --inputDirectory=VALUE`
///</summary>
abstract member InputDirectories : IEnumerable<String> with get
///<summary>
Expand All @@ -141,7 +141,7 @@ module Abstract =
///</summary>
abstract member Dependencies : IEnumerable<String> with get
///<summary>
/// Corresponds to command line option ` -k, --key=VALUE`
/// Corresponds to command line option `-k, --key=VALUE`
///</summary>
abstract member Keys : IEnumerable<String> with get
///<summary>
Expand Down Expand Up @@ -169,7 +169,7 @@ module Abstract =
///</summary>
abstract member TypeFilter : IEnumerable<String> with get
///<summary>
/// Corresponds to command line option ` -m, --methodFilter=VALUE`
/// Corresponds to command line option `-m, --methodFilter=VALUE`
///</summary>
abstract member MethodFilter : IEnumerable<String> with get
///<summary>
Expand Down Expand Up @@ -249,19 +249,19 @@ module Abstract =
///</summary>
abstract member LocalSource : bool with get
///<summary>
/// Corresponds to command line option ` -v, --visibleBranches`
/// Corresponds to command line option `-v, --visibleBranches`
///</summary>
abstract member VisibleBranches : bool with get
///<summary>
/// Corresponds to command line option `--showstatic[=VALUE]`
///</summary>
abstract member ShowStatic : string with get
///<summary>
/// Corresponds to command line option ` --showGenerated`
/// Corresponds to command line option `--showGenerated`
///</summary>
abstract member ShowGenerated : bool with get
///<summary>
/// Corresponds to command line option ` -q`
/// Corresponds to command line option `-q`
///</summary>
abstract member Verbosity : System.Diagnostics.TraceLevel with get
end
Expand Down

0 comments on commit 494d5cf

Please sign in to comment.