Skip to content

Commit

Permalink
Fix bug in configuration sample
Browse files Browse the repository at this point in the history
  • Loading branch information
slgobinath committed Feb 13, 2017
1 parent f5e59f2 commit 8959f13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
},
...
```
Expand All @@ -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"]
},
...
```
Expand Down

0 comments on commit 8959f13

Please sign in to comment.