Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
dohzya committed Jun 3, 2014
1 parent 26ae034 commit 0e895b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/baked.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var _ = require("lodash");
// Extract the bindings
conf.bindings = {};
var queryScripts = document.querySelectorAll('script[type="text/prismic-query"]');
function toUpperCase(str, l) { return l.toUpperCase() }
function toUpperCase(str, l) { return l.toUpperCase(); }
_.each(queryScripts, function(node) {
var binding = {
params: {}
Expand Down

0 comments on commit 0e895b7

Please sign in to comment.