@@ -43,7 +43,7 @@ https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0
4343
4444We use GitHub Actions for CI. Most of the things, including formatting, are checked by
4545` cargo test ` so, if ` cargo test ` passes locally, that's a good sign that CI will
46- be green as well. The only exception is that long-running by default a skipped locally.
46+ be green as well. The only exception is that some long-running tests are skipped locally by default .
4747Use ` env RUN_SLOW_TESTS=1 cargo test ` to run the full suite.
4848
4949We use bors-ng to enforce the [ not rocket science] ( https://graydon2.dreamwidth.org/1597.html ) rule.
@@ -54,9 +54,9 @@ You can run `cargo xtask install-pre-commit-hook` to install git-hook to run rus
5454
5555All Rust code lives in the ` crates ` top-level directory, and is organized as a
5656single Cargo workspace. The ` editors ` top-level directory contains code for
57- integrating with editors. Currently, it contains plugins for VS Code (in
58- typescript) and Emacs (in elisp) . The ` docs ` top-level directory contains both
59- developer and user documentation.
57+ integrating with editors. Currently, it contains the plugin for VS Code (in
58+ typescript). The ` docs ` top-level directory contains both developer and user
59+ documentation.
6060
6161We have some automation infra in Rust in the ` xtask ` package. It contains
6262stuff like formatting checking, code generation and powers ` cargo xtask install ` .
@@ -107,8 +107,8 @@ If I need to fix something simultaneously in the server and in the client, I
107107feel even more sad. I don't have a specific workflow for this case.
108108
109109Additionally, I use `cargo run --release -p ra_cli -- analysis-stats
110- path/to/some/rust/crate` to run a batch analysis. This is primaraly useful for
111- performance optimiations , or for bug minimization.
110+ path/to/some/rust/crate` to run a batch analysis. This is primarily useful for
111+ performance optimizations , or for bug minimization.
112112
113113# Logging
114114
0 commit comments