Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix: add missing trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
samouss committed Dec 20, 2017
1 parent 9e619a3 commit bd57502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docgen/src/guide/Refreshing_cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class App extends Component {
super(props);

this.state = {
refresh: false
refresh: false,
};
}

Expand Down Expand Up @@ -77,7 +77,7 @@ class App extends Component {
super(props);

this.state = {
refresh: false
refresh: false,
};
}

Expand Down

0 comments on commit bd57502

Please sign in to comment.