Skip to content

Commit 9e1786d

Browse files
committed
docs: cosmetic, fix 3-space indentation
To be consistent with other code snippets and our own style, let's use 4-spaces.
1 parent 55ef2a6 commit 9e1786d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FSharpLint can be used in several ways:
3636
The 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:
6565
Refactored 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
8383
After 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 =

0 commit comments

Comments
 (0)