Skip to content

Commit f62adce

Browse files
authoredJan 29, 2024
docs: fix links (#226)
1 parent 1cb2e76 commit f62adce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/exercise/02.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ so it's useful to understand.
110110

111111
> PLEASE NOTE: there was a subtle change in the order of cleanup functions
112112
> getting called in React 17:
113-
> https://github.com/kentcdodds/react-hooks/issues/90
113+
> <https://github.com/kentcdodds/react-hooks/issues/90>
114114
115115
## 🦉 Feedback
116116

‎src/exercise/04.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ also be determined based on the value of `squares` and we've provided a
5151
📜 Read more about derived state in
5252
[Don't Sync State. Derive It!](https://kentcdodds.com/blog/dont-sync-state-derive-it)
5353

54-
### Alternate:
54+
### Alternate
5555

5656
If you'd prefer to practice refactoring a class that does this to a hook, then
5757
you can open `src/exercise/04-classes.js` and open that on
@@ -82,7 +82,7 @@ quick extra credit).
8282

8383
[Production deploy](https://react-hooks.netlify.app/isolated/final/04.extra-3.js)
8484

85-
Open `http://localhost:3000/isolated/final/04.extra-3.js` and see that the extra
85+
Open [http://localhost:3000/isolated/final/04.extra-3.js](http://localhost:3000/isolated/final/04.extra-3.js) and see that the extra
8686
version supports keeping a history of the game and allows you to go backward and
8787
forward in time. See if you can implement that!
8888

‎src/exercise/05.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Additionally, we'll need to clean up after ourselves if this component is
5959
unmounted. Otherwise we'll have event handlers dangling around on DOM nodes that
6060
are no longer in the document.
6161

62-
### Alternate:
62+
### Alternate
6363

6464
If you'd prefer to practice refactoring a class that does this to a hook, then
6565
you can open `src/exercise/05-classes.js` and open that on

0 commit comments

Comments
 (0)
Failed to load comments.