From 5050255f5423015fe3aa0178e1e6b899b274fa3c Mon Sep 17 00:00:00 2001 From: Matthew Kernes Date: Mon, 7 Aug 2017 10:34:44 -0700 Subject: [PATCH] Fixed typos. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c012c0..641097b 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ In the HTML, each DOM you want to add to the pre-defined page tour must have at - example: `
` - `data--description`: This attribute should be assigned the description of what the tour item is. - example: `
` - +next **Note:** In our examples, the prefix is the default "tour" prefix. Both of these attributes can (and really should) be used together. However, only one is necessary. @@ -171,6 +171,6 @@ PageTour.switchTo('#some_DOM', { title: 'Some DOM Object', description: 'This is a DOM object on the page.', next: PageTour.switchTo('#another_DOM', {...}), - next: PageTour.switchTo('#a_previous_DOM', {...}) + prev: PageTour.switchTo('#a_previous_DOM', {...}) }); ```