Skip to content

Commit

Permalink
fix header filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacev committed Oct 21, 2015
1 parent 4d06646 commit 077da67
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/parser/parser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [MiniPy] /src/parser/Parser.js
// [MiniPy] /src/parser/parser.js

exports.Parser = (function() {
// require type enumerations
Expand Down
2 changes: 1 addition & 1 deletion src/parser/scanner.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [MiniPy] /src/parser/Scanner.js
// [MiniPy] /src/parser/scanner.js

exports.Scanner = (function() {
var MiniPyError = require('../error/error').MiniPyError;
Expand Down
2 changes: 1 addition & 1 deletion src/parser/token.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [MiniPy] /src/parser/Token.js
// [MiniPy] /src/parser/token.js

exports.Token = (function() {
// require type enumerations
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/interpreter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [MiniPy] /src/runtime/Interpreter.js
// [MiniPy] /src/runtime/interpreter.js

exports.Interpreter = (function() {
// require type enumerations
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/scope.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [MiniPy] /src/runtime/Scope.js
// [MiniPy] /src/runtime/scope.js

exports.Scope = (function() {
// require type enumerations
Expand Down

0 comments on commit 077da67

Please sign in to comment.