Skip to content

Commit 1d008d0

Browse files
committed
modifies some copy
1 parent cdd98d5 commit 1d008d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Nesting css puts our styles in highly specific contexts and makes it difficult t
319319
}
320320
}
321321

322-
// Crap!! This same heading style is used in the new slider section on the homepage.
322+
// Dang!! This same heading style is used in the new slider section on the homepage. I now have to unnest these style.
323323
```
324324

325325
**Good**
@@ -385,7 +385,7 @@ As compared to:
385385
}
386386
}
387387

388-
/* Crap! When I search the repo for .selector, it's in 3 different places and 3 different files. Now I have to spend time finding
388+
/* Dang! When I search the repo for .selector, it's in 3 different places and 3 different files. Now I have to spend time finding
389389
where I should make my change */
390390
```
391391

@@ -403,7 +403,7 @@ button {
403403
cursor: pointer;
404404
}
405405

406-
// Crap, I need these exact styles on an <a> tag
406+
// Dang! I need these exact styles on an <a> tag
407407
```
408408

409409
**Good**
@@ -482,7 +482,7 @@ $('.product-actions .btn').click(function() {
482482
CartJS.addItem(variantId, 1);
483483
})
484484

485-
// Crap!! Someone changed .btn to .button and now no one can add to cart!!!
485+
// Oh no!! Someone changed .btn to .button and now no one can add to cart!!!
486486
```
487487

488488
**Good**

0 commit comments

Comments
 (0)