Skip to content

Commit ecffd24

Browse files
committed
Fix mistake in CONTRIBUTING.md
1 parent f120967 commit ecffd24

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ npm run style
1919
To automatically fix any style violations in your code, you can run:
2020

2121
```sh
22-
npm run style --fix
22+
npm run style -- --fix
2323
```
2424

2525
## Running tests
@@ -43,19 +43,19 @@ npm run prepare
4343
This will create new CSS files in the `/dist` folder which you can reference in your own test HTML file. We often test our own changes by creating an `index.html` file in the root of the Tailwind project itself that pulls in the `/dist/tailwind.css` stylesheet:
4444

4545
```html
46-
<!doctype html>
46+
<!DOCTYPE html>
4747
<html lang="en">
4848
<head>
49-
<meta charset="utf-8">
50-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
51-
<link rel="stylesheet" href="/dist/tailwind.css">
49+
<meta charset="utf-8" />
50+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
51+
<link rel="stylesheet" href="/dist/tailwind.css" />
5252
<title>Hello, world!</title>
5353
</head>
5454
<body>
5555
<h1 class="text-2xl font-bold text-center">Hello world!</h1>
5656
</body>
5757
</html>
58-
````
58+
```
5959

6060
You can then use a tool like [live-server](https://www.npmjs.com/package/live-server) to preview it in the browser:
6161

0 commit comments

Comments
 (0)