From 191300b48ab8d9c90fd565839f95940d2ced7406 Mon Sep 17 00:00:00 2001 From: Alex Knauth Date: Tue, 27 Oct 2015 21:47:27 -0400 Subject: [PATCH] Fix small typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f633c99..efd7ab6 100644 --- a/README.md +++ b/README.md @@ -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)