Skip to content

Commit

Permalink
docs(rule83): improve wording & fix vNext
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Jan 6, 2024
1 parent 384e9c2 commit 31102af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/how-tos/rules/FL0083.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ hide_menu: true

# UnneededRecKeyword (FL0083)

*Introduced in `0.23.1`*
*Introduced in `0.23.8`*

## Cause

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

## Rationale

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

## How To Fix

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

## Rule Settings

Expand Down

0 comments on commit 31102af

Please sign in to comment.