Skip to content

Commit b8c7a03

Browse files
committed
fixes indentation for comments and a punctuation mistake.
1 parent f3cb0f6 commit b8c7a03

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

koans/AboutExpects.js

Lines changed: 5 additions & 5 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();
@@ -31,7 +31,7 @@ describe("About Expects", function() {
3131
expect(actualValue).toBe(expectedValue);
3232
});
3333

34-
//Sometimes we will ask you to fill in the values.
34+
// Sometimes we will ask you to fill in the values.
3535
it("should have filled in values", function () {
3636
expect(1 + 1).toEqual(FILL_ME_IN);
3737
});

0 commit comments

Comments
 (0)