Replace `recursiveness` by `recursion`
See original GitHub issue /**
* This test runs all rules against an API specification with recursive references. It prevents check developers
* from StackOverflow exceptions during the check execution.
*
* General advice: Don't use `hashCode` or `toString` methods on the OpenAPI elements since they don't support
* recursiveness. Keep in mind that these methods can be called implicitly (e.g. when putting objects in a Set).
*/
@Test
fun `all rules must be able to cope with recursive api specifications`() {
recursiveness
is not a word.
The word you are looking for it recursivity
recursion
.
Perform a project wide search to make sure that mistake is not anywhere else.
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Replace Recursion with Iteration - Refactoring
Recursion is implemented as a method that calls itself to solve subtasks. During the recursive call the values of the local fields of...
Read more >Way to go from recursion to iteration - Stack Overflow
Usually, I replace a recursive algorithm by an iterative algorithm by pushing the parameters that would normally be passed to the recursive ......
Read more >How to replace recursive functions using stack and while-loop ...
This article explains 10 rules (steps) for replacing the recursive functions using stack and while-loop to avoid the stack-overflow.
Read more >Recursive program to replace all occurrences of pi with 3.14 in ...
The task is to write a recursive function to replace all occurrences of pi with 3.14 in the given string and print the...
Read more >Recursive replacement of string - Oracle Communities
Recursive replacement of string ... Thanks, yes we want to replace starting from the deepest level: with x as ( select level lvl, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Out of curiosity I just looked up the 3 words on google trends and was a little surprised to see that recursivity is slightly more common than recursiveness. However, both disappear in the bottom of the chart when compared to recursion.
Can be closed now.