From 8959f13b5d2b775562547085c5b3bf635b5ced7e Mon Sep 17 00:00:00 2001 From: Gobinath Date: Sun, 12 Feb 2017 19:20:52 -0500 Subject: [PATCH] Fix bug in configuration sample --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fefead2..f26b5e2 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ For example, to take the break if your current window is Google Chrome regardles ... "active_window_class": { "skip_break": [], - "take_break": [`google-chrome`] + "take_break": ["google-chrome"] }, ... ``` @@ -168,8 +168,8 @@ Similarly, you can skip the break even if your current application is in normal ``` ... "active_window_class": { - "skip_break": [`vlc`], - "take_break": [`google-chrome`] + "skip_break": ["vlc"], + "take_break": ["google-chrome"] }, ... ```