diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f7cf37832b2c..861b0bc68e8f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -205,13 +205,7 @@ The tests are run against the compiled files, which means that you need to run t ## Website development The [Biome website](https://biomejs.dev/) is built with [Astro](https://astro.build). -To start a development server you can run the following commands: - -```bash -cd website -pnpm install -pnpm start -``` +To start a development please check our [README](./website/README.md) ### Translations diff --git a/crates/biome_js_formatter/src/comments.rs b/crates/biome_js_formatter/src/comments.rs index 9e93585f31c7..c8646ab95867 100644 --- a/crates/biome_js_formatter/src/comments.rs +++ b/crates/biome_js_formatter/src/comments.rs @@ -336,7 +336,7 @@ fn handle_continue_break_comment( /// } /// ``` /// -/// All other same line comments will use `Default` placement if they have a perceding node. +/// All other same line comments will use `Default` placement if they have a preceding node. /// ```javascript /// switch(x) { /// default: diff --git a/website/README.md b/website/README.md index 0c3a62d98cee..7158a8f202c8 100644 --- a/website/README.md +++ b/website/README.md @@ -3,6 +3,7 @@ ## Installation ``` +$ cd website $ pnpm install ``` diff --git a/xtask/codegen/html.ungram b/xtask/codegen/html.ungram index 175a35e6b70f..7c2ae13a5566 100644 --- a/xtask/codegen/html.ungram +++ b/xtask/codegen/html.ungram @@ -1,4 +1,4 @@ -// CSS Un-Grammar. +// HTML Un-Grammar. // // This grammar specifies the structure of Rust's concrete syntax tree. // It does not specify parsing rules (ambiguities, precedence, etc are out of scope).