Skip to content

Commit 1c3547a

Browse files
committed
docs(rule83): improve wording & fix vNext [no ci]
1 parent 384e9c2 commit 1c3547a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/how-tos/rules/FL0083.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ hide_menu: true
66

77
# UnneededRecKeyword (FL0083)
88

9-
*Introduced in `0.23.1`*
9+
*Introduced in `0.23.8`*
1010

1111
## Cause
1212

13-
Recursive functions (functions with a "rec" keyword) does not call themselves.
13+
Recursive function (function marked with a "rec" keyword) does not invoke itself.
1414

1515
## Rationale
1616

1717
Using "rec" keyword on a function that is not recursive is unnecessary.
1818

1919
## How To Fix
2020

21-
Update the function to call itself or remove "rec" keyword if that function doesn't need to call recursively.
21+
Update the function to invoke itself or remove "rec" keyword in case it doesn't need to invoke itself recursively.
2222

2323
## Rule Settings
2424

0 commit comments

Comments
 (0)