diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-06-14 08:40:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-14 08:40:45 +0100 |
commit | a274ae384e38be5ad1b23cd2b7f2120e5a284209 (patch) | |
tree | cbfaace88ad11fae932e4454a658fc86f2c4b3bf | |
parent | 5a8ddb4b2d62f6a56f867ff2daafef6a2b15f00f (diff) | |
parent | e23cfeac7114caaf5fa222c16d11e4f49413a91b (diff) |
Merge #9261
9261: minor: dev/architecture.md: Fix typo in env-var quoting r=lnicola a=lf-
Co-authored-by: Jade <[email protected]>
-rw-r--r-- | docs/dev/architecture.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index 3de1b99a5..721c555ab 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md | |||
@@ -428,7 +428,7 @@ Rather than spawning futures or scheduling callbacks (open), the event loop acce | |||
428 | It's easy to see all the things that trigger rust-analyzer processing, together with their performance | 428 | It's easy to see all the things that trigger rust-analyzer processing, together with their performance |
429 | 429 | ||
430 | rust-analyzer includes a simple hierarchical profiler (`hprof`). | 430 | rust-analyzer includes a simple hierarchical profiler (`hprof`). |
431 | It is enabled with `RA_PROFILE='*>50` env var (log all (`*`) actions which take more than `50` ms) and produces output like: | 431 | It is enabled with `RA_PROFILE='*>50'` env var (log all (`*`) actions which take more than `50` ms) and produces output like: |
432 | 432 | ||
433 | ``` | 433 | ``` |
434 | 85ms - handle_completion | 434 | 85ms - handle_completion |