Skip to content

Commit

Permalink
Fix typo and clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfirth committed Aug 24, 2015
1 parent 5de84ec commit 5bf05ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ease/private/invert.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
@defproc[(ease-invert [easing ease/c]) ease/c]{
Returns an easing that is like @racket[easing], but
with proportional changes inverted from @racket[easing].
If @racket[easing] starts out proportionally further
along than @racket[linear-ease], then the returned
easing will start out proportionally behind @racket[linear-ease].
@ease-examples[
(define (quadratic-ease x) (* x x))
(ease-real quadratic-ease 0 100 5)
Expand All @@ -14,7 +17,7 @@

@defproc[(ease-reverse [easing ease/c]) ease/c]{
Returns an easing that is like @racket[easing], but
with it's steps reversed.
with its steps reversed.
@ease-examples[
(ease-real linear-ease 0 100 5)
(ease-real (ease-reverse linear-ease) 0 100 5)
Expand Down

0 comments on commit 5bf05ff

Please sign in to comment.