From 895bb86b4d22b8fd555d88597d7875049f4be98d Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Sun, 7 Jun 2015 11:52:41 +0200 Subject: [PATCH] Add missing backtick --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2b77b2..e6c0c9d 100644 --- a/README.md +++ b/README.md @@ -963,7 +963,7 @@ Handling an event invariably involves mutating the value in `app-db` An item is added here, or one is deleted there. So, often simple CRUD, but sometimes much more, and sometimes with async results. -But the `app-db` mutation is ultimately handled by re-frame (it does the `reset!). That leaves your event +But the `app-db` mutation is ultimately handled by re-frame (it does the `reset!`). That leaves your event handlers pure. As a result, they tend to be easy to test and understand. Many are almost trivial. There's more to event handlers than can be covered here in this introductory tutorial. Read up on