Skip to content
This repository was archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Fix method name in README.md
Browse files Browse the repository at this point in the history
Looking at line 105 in `theme-set.js`, this should be `newThemeSet`.

This makes me wonder if `Gauge.prototype.setThemeset` should be `Gauge.prototype.setThemeSet` for consistency, but that is outside of the scope of this PR and would be a breaking change.
  • Loading branch information
brianloveswords authored May 27, 2017
1 parent 81122f0 commit 08a4e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ var ThemeSet = require('gauge/theme-set')
var themes = new ThemeSet()
// or
var themes = require('gauge/themes')
var mythemes = themes.newThemeset() // creates a new themeset based on the default themes
var mythemes = themes.newThemeSet() // creates a new themeset based on the default themes
```

#### themes(opts)
Expand Down

0 comments on commit 08a4e25

Please sign in to comment.