Skip to content

Commit

Permalink
Tiny documentation clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi authored and bombsimon committed Jul 30, 2022
1 parent d6446b9 commit ae82899
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Required when true:
```go
x := []string{}
y := "not going in x")
y := "not going in x"

x = append(x, "not y")
x = append(x, y)
Expand All @@ -38,11 +38,10 @@ Supproted when false:

```go
x := []string{}
y := "not going in x")
y := "not going in x"
x = append(x, "not y")
z := "string"
x = append(x, "i don't care")

```

### [allow-assign-and-call](rules.md#only-cuddled-expressions-if-assigning-variable-or-using-from-line-above)
Expand Down

0 comments on commit ae82899

Please sign in to comment.