Skip to content

Commit bbf5e0c

Browse files
committed
Additional link fixes.
1 parent 0e06b14 commit bbf5e0c

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

exercises/practice/rotational-cipher/.approaches/introduction.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,9 @@ A recursive function is a function that calls itself.
9999
This approach can be more concise than other approaches, and may also be more readable for some audiences.
100100

101101
~~~~exercism/caution
102-
Python does not have any tail-call optimization and has a default [recursion limit][recursion-limit] of 1000 calls on the stack.
102+
Python does not have any tail-call optimization and has a default [recursion limit](https://docs.python.org/3/library/sys.html#sys.setrecursionlimit) of 1000 calls on the stack.
103103
Calculate your base case carefully to avoid errors.
104104
105-
[recursion-limit]: https://docs.python.org/3/library/sys.html#sys.setrecursionlimit
106105
~~~~
107106

108107

exercises/practice/rotational-cipher/.approaches/recursion/content.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ That translates to something like this: `<letter> + <letter> + <letter> + <lette
3131

3232
~~~~exercism/note
3333
By default, we can't have a function call itself more than 1000 times.
34-
Code that exceeds this recursion limit will throw a [`RecursionError`][recursion-error].
35-
While it is possible to [adjust the recursion limit][recursion-limit], doing so risks crashing Python and may also crash your system.
34+
Code that exceeds this recursion limit will throw a [`RecursionError`](https://docs.python.org/3/library/exceptions.html#RecursionError).
35+
While it is possible to [adjust the recursion limit](https://docs.python.org/3/library/sys.html#sys.setrecursionlimit), doing so risks crashing Python and may also crash your system.
3636
Casually raising the recursion limit is not recommended.
3737
38-
[recursion-error]: https://docs.python.org/3/library/exceptions.html#RecursionError
39-
[recursion-limit]: https://docs.python.org/3/library/sys.html#sys.setrecursionlimit
4038
~~~~
4139

4240
[clojure]: https://exercism.org/tracks/clojure

0 commit comments

Comments
 (0)