Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 326bb84

Browse files
authoredApr 11, 2019
Update style-guide.md
1 parent b362191 commit 326bb84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎style-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const text = "Hello, world";
2626
document.querySelector('.hello').innerHTML = text;
2727
```
2828

29-
✅ DO (comment):
29+
✅ DO (translate comment):
3030

3131
```js
3232
// Ejemplo
@@ -42,7 +42,7 @@ const text = 'Hola mundo';
4242
document.querySelector('.hello').innerHTML = text;
4343
```
4444

45-
❌ DON'T (class):
45+
❌ DON'T (translate class):
4646

4747
```js
4848
// Ejemplo
@@ -52,7 +52,7 @@ const text = 'Hola mundo';
5252
document.querySelector('.hola').innerHTML = text;
5353
```
5454

55-
❌ DEFINITELY DON'T (variables):
55+
❌ DEFINITELY DON'T (translate variables):
5656

5757
```js
5858
// Ejemplo

0 commit comments

Comments
 (0)
Please sign in to comment.