diff --git a/docs/content/how-tos/rules/FL0083.md b/docs/content/how-tos/rules/FL0083.md index 3e38ece96..0df203833 100644 --- a/docs/content/how-tos/rules/FL0083.md +++ b/docs/content/how-tos/rules/FL0083.md @@ -6,11 +6,11 @@ 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 @@ -18,7 +18,7 @@ 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