Merge pull request #227 from AlexKnauth/patch-1

Fix small typo
This commit is contained in:
Jack Firth 2015-10-28 07:49:39 -07:00
commit 016ba6a2d2

View File

@ -16,7 +16,7 @@ A lens is a value that can be used to focus on a small subpiece of some larger s
'(a 2 3)
```
Lenses are first class values and pure functional, so they can be abstracted over and functions that operate on lenses can be created. For instance, given a lens it's view can be "updated":
Lenses are first class values and pure functional, so they can be abstracted over and functions that operate on lenses can be created. For instance, given a lens its view can be "updated":
```racket
> (lens-transform first-lens '(1 2 3) number->string)