Skip to content

Commit 307bf10

Browse files
committed
updates all comments in aboutExpects.js to have one space (not two spaces) after the slashes.
1 parent 08832bd commit 307bf10

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

koans/AboutExpects.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
describe("About Expects", function() {
22

3-
// We shall contemplate truth by testing reality, via spec expectations.
3+
// We shall contemplate truth by testing reality, via spec expectations.
44
it("should expect true", function() {
55
expect(false).toBeTruthy(); //This should be true
66
});
77

8-
// To understand reality, we must compare our expectations against reality.
8+
// To understand reality, we must compare our expectations against reality.
99
it("should expect equality", function () {
1010
var expectedValue = FILL_ME_IN;
1111
var actualValue = 1 + 1;
1212

1313
expect(actualValue === expectedValue).toBeTruthy();
1414
});
1515

16-
// Some ways of asserting equality are better than others.
16+
// Some ways of asserting equality are better than others.
1717
it("should assert equality a better way", function () {
1818
var expectedValue = FILL_ME_IN;
1919
var actualValue = 1 + 1;
@@ -22,7 +22,7 @@ describe("About Expects", function() {
2222
expect(actualValue).toEqual(expectedValue);
2323
});
2424

25-
// Sometimes you need to be really exact about what you "type."
25+
// Sometimes you need to be really exact about what you "type."
2626
it("should assert equality with ===", function () {
2727
var expectedValue = FILL_ME_IN;
2828
var actualValue = (1 + 1).toString();

0 commit comments

Comments
 (0)