Skip to content

Commit c07b06b

Browse files
committed
fix: correct typo in README regarding syntactic description
1 parent c008680 commit c07b06b

File tree

1 file changed

+1
-1
lines changed
  • exercises/03.assertions/03.problem.custom-quality-testers

1 file changed

+1
-1
lines changed

exercises/03.assertions/03.problem.custom-quality-testers/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ It's a bit harder if those two are different.
1616
expect(new Measurement(1, 'in')).toEqual(new Measurement(2.54, 'cm')) //
1717
```
1818

19-
Semantically, these two measurements _are_ equal. 1 inch is, indeed, 2.54 centimeters. But syntanctically these two measurements produce different class instances that cannot be compared literally:
19+
Semantically, these two measurements _are_ equal. 1 inch is, indeed, 2.54 centimeters. But syntactically these two measurements produce different class instances that cannot be compared literally:
2020

2121
```ts nonumber
2222
// If you unwrap measurements, you can imagine them as plain objects.

0 commit comments

Comments
 (0)