Skip to content

Commit eacd74b

Browse files
authored
Merge pull request #156 from toh995/fix-typos
add missing semicolons
2 parents f22c592 + 9e96f94 commit eacd74b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/markdown/tutorial/part-1/04-component-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ But what kind of test? We *could* write a component test for the `<NavBar>` by i
286286
+ await visit('/');
287287
+
288288
+ assert.dom('nav').exists();
289-
+ assert.dom('nav a.menu-index').hasText('SuperRentals')
289+
+ assert.dom('nav a.menu-index').hasText('SuperRentals');
290290
+ assert.dom('nav a.menu-about').hasText('About');
291291
+ assert.dom('nav a.menu-contact').hasText('Contact');
292292
+

src/markdown/tutorial/part-1/06-interactive-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Finally, let's write a test for this new behavior:
255255
+
256256
+ await click('button.image');
257257
+
258-
+ assert.dom('.image').hasClass('large')
258+
+ assert.dom('.image').hasClass('large');
259259
+ assert.dom('.image small').hasText('View Smaller');
260260
+
261261
+ await click('button.image');

0 commit comments

Comments
 (0)