From 1d5116466c00ad1e5cda6e7a67f7aabb2f2690f6 Mon Sep 17 00:00:00 2001 From: Justin Windle Date: Mon, 27 May 2013 19:18:02 -0400 Subject: [PATCH] Small type update to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bef99f4..3a7a54b 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Here's an example: * A sketch is an augmented drawing context (`CanvasRenderingContext2D`, `WebGLRenderingContext` or `HTMLElement`) so it has all the expected drawing methods built in. * The `mouse` property is also the first element of the `touches` array and vice versa, so you can code to one standard and get touch and multi-touch support for free. * The `update` and `draw` loops run on the browser animation frame and can `stop` and `start` whenever you like. - * You get fast access to `Math` functions and constants, plus extras like range and array enabled `random` plus `map` and `lerp`. + * You get fast access to `Math` functions and constants, plus extras like range and array enabled `random`, `map` and `lerp`. * Simple and configurable. You can even bring your own `context`, so it works well with libraries like [THREE](http://threejs.org/). ### The Rest