File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ FSharpLint can be used in several ways:
3636The following program:
3737
3838 type ExampleInterface =
39- abstract member print : unit -> unit
39+ abstract member print : unit -> unit
4040
4141 [<EntryPoint>]
4242 let main argv =
@@ -65,7 +65,7 @@ Run against the lint tool generates the following errors:
6565Refactored using lint's warnings:
6666
6767 type IExampleInterface =
68- abstract member Print : unit -> unit
68+ abstract member Print : unit -> unit
6969
7070 [<EntryPoint>]
7171 let main argv =
@@ -83,7 +83,7 @@ If we run lint again it will find a new error, it's worth running the tool until
8383After refactoring again we have with no lint errors:
8484
8585 type IExampleInterface =
86- abstract member Print : unit -> unit
86+ abstract member Print : unit -> unit
8787
8888 [<EntryPoint>]
8989 let main argv =
You can’t perform that action at this time.
0 commit comments