question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

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:closed
  • Created 5 years ago
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
roxspringcommented, Nov 1, 2018

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.

0reactions
roxspringcommented, Nov 1, 2018

Can be closed now.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found