Skip to content

Commit 3c09d63

Browse files
committed
Core: rectify function signature return type
This commit addresses a mistake in the `runAstNodeRules` function where the return type was incorrectly specified. The return type has now been corrected.
1 parent 66f4229 commit 3c09d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharpLint.Core/Application/Lint.fsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ module Lint =
129129
SyntaxArray: AbstractSyntaxArray.Node array }
130130

131131
/// Runs all rules which take a node of the AST as input.
132-
val runAstNodeRules : RunAstNodeRulesConfig -> Suggestion.LintWarning array * Context
132+
val runAstNodeRules : RunAstNodeRulesConfig -> Suggestion.LintWarning [] * Context
133133

134134
type RunLineRulesConfig = { LineRules: Configuration.LineRules
135135
GlobalConfig: Rules.GlobalRuleConfig

0 commit comments

Comments
 (0)