Skip to content

Commit

Permalink
style: fix typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuspoehls authored and thetutlage committed Sep 25, 2018
1 parent 280ecb6 commit b8a423b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Youch.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Youch {
*
* @return {String}
*/
_complieView (view, data) {
_compileView (view, data) {
return Mustache.render(view, data)
}

Expand Down Expand Up @@ -290,7 +290,7 @@ class Youch {

const request = this._serializeRequest()
data.request = request
resolve(this._complieView(viewTemplate, data))
resolve(this._compileView(viewTemplate, data))
})
.catch(reject)
})
Expand Down

0 comments on commit b8a423b

Please sign in to comment.