From 502af37fb08a5faf6be35f7862ee224bdebc9c3d Mon Sep 17 00:00:00 2001
From: Ravi Srinivasan <rsriniva@users.noreply.github.com>
Date: Fri, 15 Mar 2019 06:58:31 +0100
Subject: [PATCH] Merge pull request #1 from kborup-redhat/patch-1

---
 exercises/3-revenge-of-the-automated-testing/README.md |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/exercises/3-revenge-of-the-automated-testing/README.md b/exercises/3-revenge-of-the-automated-testing/README.md
index 92817e4..714f5ce 100644
--- a/exercises/3-revenge-of-the-automated-testing/README.md
+++ b/exercises/3-revenge-of-the-automated-testing/README.md
@@ -519,7 +519,7 @@
       // TODO - FILL THIS OUT IN THE EXERCISE
       this.$store.dispatch("updateTodo", {id: this.todoItem._id, important: true});
       console.info("INFO - Mark todo as important ", this.todoItem.important);
-    },
+    }
 ```
 
 14. Let's connect the click button in the DOM to the Javascript function we've just created. In the template, add a click handler to the md-button to call the function `markImportant()` by adding ` @click="markImportant()"` to the `<md-button>` tag
@@ -531,7 +531,7 @@
     </md-button>
 ```
 
-15. Finally - we need to make it so that when a new todo item is created it will have an important property. Head to `store/actions.js` and add `important: false`  below `completed: false` in the `addTodo(){}` action.
+15. Finally - we need to make it so that when a new todo item is created it will have an important property. Head to `src/store/actions.js` and add `important: false`  below `completed: false` in the `addTodo(){}` action.
 
 ![fe-add-actions-important](../images/exercise3/fe-add-actions-important.jpg)
 

--
Gitblit v1.9.3