Fix bug in configuration sample

This commit is contained in:
Gobinath 2017-02-12 19:20:52 -05:00
parent f5e59f26fb
commit 8959f13b5d
1 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ For example, to take the break if your current window is Google Chrome regardles
... ...
"active_window_class": { "active_window_class": {
"skip_break": [], "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": { "active_window_class": {
"skip_break": [`vlc`], "skip_break": ["vlc"],
"take_break": [`google-chrome`] "take_break": ["google-chrome"]
}, },
... ...
``` ```