Skip to content

Commit

Permalink
Update instructions.md (#624)
Browse files Browse the repository at this point in the history
Fixed typos in instructions
  • Loading branch information
sdmoralesma committed Mar 8, 2024
1 parent fa00de9 commit 20eaa6c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ Implement the `memoize-transform` function. It takes a function to _memoize_, th
(def triple-scale (scale2d 3 3))
(def memoized-scale (memoize-transform triple-scale))

(memoizedScale 4 3)
(memoized-scale 4 3)
;; => [12, 9], this is computed since it hasn't been computed before for the arguments

(memoizedScale 4 3)
(memoized-scale 4 3)
;; => [12, 9], this is remembered, since it was computed already
```
```

0 comments on commit 20eaa6c

Please sign in to comment.