Skip to content

Commit 85e4cf0

Browse files
committed
SQUASHME: rename
I've renamed f to action, which indicates that it's a function performing an action on each item in the list.
1 parent 9dfcd78 commit 85e4cf0

File tree

1 file changed

+2
-2
lines changed
  • src/FSharpLint.Core/Framework

1 file changed

+2
-2
lines changed

src/FSharpLint.Core/Framework/Ast.fs

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ module Ast =
124124
| _ -> None
125125

126126
module List =
127-
let inline revIter func items =
128-
items |> List.rev |> List.iter func
127+
let inline revIter action items =
128+
items |> List.rev |> List.iter action
129129

130130
let inline private moduleDeclarationChildren node add =
131131
match node with

0 commit comments

Comments
 (0)