From 6feeb1bd426011447656b7fdf8bbd41b19da1658 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Sun, 22 May 2016 02:17:05 +0900 Subject: [PATCH] docs: fix lil wording thing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 011b8a8..a0168d3 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ are disabled. That means you need to know what the state of your application is going to be _before_ you render it - no cheating! Secondly, the `send()` method inside `router` and `view` has been disabled. If -you call it your program will crash (give it a try, just to see!) +you call it your program will crash. Disabling all these things means that your program will render [`O(n)`][big-o] (computer science speak for "constant time"), which is super neat. Off to