Skip to content

Commit

Permalink
Fix minor linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mk12 committed Jul 8, 2023
1 parent ed8aa54 commit 7ba613d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ We can import definitions out of order:
(define (cube x) (* x x x))
(Exercise ?1.15
(use (:1.2 square cube)))
(use (:1.2 cube square)))
(define a (+ (square 3) (cube 4))) ; ok
```
Expand Down
2 changes: 1 addition & 1 deletion notes/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,7 @@ Angle `angle-polar` `angle-rectangular`
(sqrt (/ 6 (monte-carlo trials cesaro-test))))
(define (cesaro-test)
(= (gcd (rand) (rand)) 1))
(= (gcd (rand) (rand)) 1))
(define (monte-carlo trials experiment)
(define (iter trials-remaining trials-passed)
Expand Down

0 comments on commit 7ba613d

Please sign in to comment.