Skip to content

Commit 0bdf295

Browse files
authored
Merge pull request #86 from hiendv/fix-templates-comments-use-b
//use b to // Use b
2 parents 1568e31 + 9ebcb9b commit 0bdf295

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

templates/amdWeb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
root.amdWeb = factory(root.b);
2525
}
2626
}(this, function (b) {
27-
//use b in some fashion.
27+
// Use b in some fashion.
2828

2929
// Just return a value to define the module export.
3030
// This example returns an object, but the module

templates/amdWebGlobal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
root.amdWebGlobal = factory(root.b);
3030
}
3131
}(this, function (b) {
32-
//use b in some fashion.
32+
// Use b in some fashion.
3333

3434
// Just return a value to define the module export.
3535
// This example returns an object, but the module

templates/commonjsStrict.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
factory((root.commonJsStrict = {}), root.b);
2929
}
3030
}(this, function (exports, b) {
31-
//use b in some fashion.
31+
// Use b in some fashion.
3232

3333
// attach properties to the exports object to define
3434
// the exported module properties.

templates/commonjsStrictGlobal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
factory((root.commonJsStrictGlobal = {}), root.b);
3131
}
3232
}(this, function (exports, b) {
33-
//use b in some fashion.
33+
// Use b in some fashion.
3434

3535
// attach properties to the exports object to define
3636
// the exported module properties.

templates/returnExports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
root.returnExports = factory(root.b);
2929
}
3030
}(this, function (b) {
31-
//use b in some fashion.
31+
// Use b in some fashion.
3232

3333
// Just return a value to define the module export.
3434
// This example returns an object, but the module

templates/returnExportsGlobal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
root.returnExportsGlobal = factory(root.b);
3131
}
3232
}(this, function (b) {
33-
//use b in some fashion.
33+
// Use b in some fashion.
3434

3535
// Just return a value to define the module export.
3636
// This example returns an object, but the module

0 commit comments

Comments
 (0)