From ea3219fa10af754ebf003bcac3b5693fa89cd5c3 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Wed, 8 Apr 2015 10:04:58 +0200 Subject: [PATCH] Typo. --- packages/xo-collection/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/xo-collection/README.md b/packages/xo-collection/README.md index ca5849fec..6d30a9776 100644 --- a/packages/xo-collection/README.md +++ b/packages/xo-collection/README.md @@ -144,7 +144,7 @@ col.on('add', (added) => { ```javascript col.on('update', (updated) => { forEach(updated, (value, key) => { - console.log('- %s: %j', key, value) + console.log('± %s: %j', key, value) }) }) ``` @@ -153,12 +153,12 @@ col.on('update', (updated) => { ```javascript col.on('remove', (removed) => { - // For consistency, `removed` is also a map but contrary to `ædded` + // For consistency, `removed` is also a map but contrary to `added` // and `updated`, the values associated to the keys are not // significant since the entries have already be removed. forEach(removed, (value, key) => { - console.log('± %s', key) + console.log('- %s', key) }) }) ```