From 18343d1f922442af732eb1eed79079abe77fbaab Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Fri, 21 Apr 2017 16:24:31 +0100 Subject: [PATCH] Fix type-o --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db60ed9..47055a9 100644 --- a/README.md +++ b/README.md @@ -314,7 +314,7 @@ the DOM element. ### The dataset module ### -Allows you set set custom data attributes (`data-*`) on DOM elements. These can then be accessed with the [HTMLElement.dataset](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset) property. +Allows you to set custom data attributes (`data-*`) on DOM elements. These can then be accessed with the [HTMLElement.dataset](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset) property. ```javascript h('button', {dataset: {action: 'reset'}}, 'Reset');