Skip to content

Commit 79da579

Browse files
heydariplusplusSaswatPadhi
authored andcommitted
resolving an error related to camel case
1 parent 6a26151 commit 79da579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pseudocode.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ module.exports = {
6767
}
6868
},
6969

70-
renderClass: function(class_name, options) {
70+
renderClass: function(className, options) {
7171
[].forEach.call(
72-
document.getElementsByClassName(class_name),
72+
document.getElementsByClassName(className),
7373
function(el) { this.renderElement(el, options); }
7474
);
7575
},

0 commit comments

Comments
 (0)