Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code formatting fix on js101/scope
  • Loading branch information
Connor Montgomery committed Feb 20, 2012
commit 91fbf51551d97667c1d3156d4596146c76952a83
2 changes: 1 addition & 1 deletion content/javascript-101/scope.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ sayHello(); // logs 'hello'
console.log(foo); // logs 'world'
</javascript>

<javascript caption="Functions can "see" changes in variable values after the function is defined">
<javascript caption="Functions can see changes in variable values after the function is defined">
var myFunction = function() {
var foo = 'hello';

Expand Down
2 changes: 1 addition & 1 deletion content/javascript-101/testing-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var myFunction = function() {
};

var myObject = {
foo : 'bar'
foo : 'bar'
};

var myArray = [ 'a', 'b', 'c' ];
Expand Down