Skip to content

Commit 4fe8bcf

Browse files
authored
Fix a few more FS3548 warnings (#2828)
1 parent d4d76bc commit 4fe8bcf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/app/Fake.Core.CommandLineParsing/docopt.fs/Docopt/Ast.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,19 @@ type UsageAstBuilder =
9393

9494
member x.UsageTag =
9595
match x with
96-
| UsageAstBuilder.Eps _ -> Tag.Eps
96+
| UsageAstBuilder.Eps -> Tag.Eps
9797
| UsageAstBuilder.Ano _ -> Tag.Ano
9898
| UsageAstBuilder.Sop _ -> Tag.Sop
9999
| UsageAstBuilder.Lop _ -> Tag.Lop
100100
| UsageAstBuilder.Sqb _ -> Tag.Sqb
101101
| UsageAstBuilder.Req _ -> Tag.Req
102102
| UsageAstBuilder.Arg _ -> Tag.Arg
103-
| UsageAstBuilder.XorEmpty _ -> Tag.Xor
103+
| UsageAstBuilder.XorEmpty -> Tag.Xor
104104
| UsageAstBuilder.Xor _ -> Tag.Xor
105105
| UsageAstBuilder.Seq _ -> Tag.Seq
106106
| UsageAstBuilder.Cmd _ -> Tag.Cmd
107107
| UsageAstBuilder.Ell _ -> Tag.Ell
108-
| UsageAstBuilder.Sdh _ -> Tag.Sdh
108+
| UsageAstBuilder.Sdh -> Tag.Sdh
109109

110110
and UsageAstCell =
111111
{ mutable Content: UsageAstBuilder option }

src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,15 @@ module AssemblyInfoFile =
360360
|> Seq.tryFind (fun (attr: Attribute) -> attr.Name = "AssemblyVersion")
361361
with
362362
| Some attr -> attr.Value
363-
| None _ -> "\"" + BuildServer.buildVersion + "\""
363+
| None -> "\"" + BuildServer.buildVersion + "\""
364364

365365
let private getAssemblyInformationalVersion attributes =
366366
match
367367
attributes
368368
|> Seq.tryFind (fun (attr: Attribute) -> attr.Name = "AssemblyInformationalVersion")
369369
with
370370
| Some attr -> attr.Value
371-
| None _ -> getAssemblyVersionInfo attributes
371+
| None -> getAssemblyVersionInfo attributes
372372

373373
let private getSortedAndNumberedAttributes (attrs: seq<Attribute>) =
374374
attrs

0 commit comments

Comments
 (0)