diff options
author | Laurențiu Nicola <[email protected]> | 2021-04-08 15:51:02 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2021-04-08 15:51:19 +0100 |
commit | 7221188b0d5824061a6dfae6d339fe06edcc087a (patch) | |
tree | eb0ed4d1a6321bbd0414ac721c23e0720186f37b /docs | |
parent | eb248d85a0eb91bae7bafcd69ffe4dfed3e32fce (diff) |
Remove extra bracket in architecture docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/architecture.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index 3ffd9e8cb..39edf9e19 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md | |||
@@ -139,7 +139,7 @@ If an AST method returns an `Option`, it *can* be `None` at runtime, even if thi | |||
139 | ### `crates/base_db` | 139 | ### `crates/base_db` |
140 | 140 | ||
141 | We use the [salsa](https://github.com/salsa-rs/salsa) crate for incremental and on-demand computation. | 141 | We use the [salsa](https://github.com/salsa-rs/salsa) crate for incremental and on-demand computation. |
142 | Roughly, you can think of salsa as a key-value store, but it can also compute derived values using specified functions. | 142 | Roughly, you can think of salsa as a key-value store, but it can also compute derived values using specified functions. |
143 | The `base_db` crate provides basic infrastructure for interacting with salsa. | 143 | The `base_db` crate provides basic infrastructure for interacting with salsa. |
144 | Crucially, it defines most of the "input" queries: facts supplied by the client of the analyzer. | 144 | Crucially, it defines most of the "input" queries: facts supplied by the client of the analyzer. |
145 | Reading the docs of the `base_db::input` module should be useful: everything else is strictly derived from those inputs. | 145 | Reading the docs of the `base_db::input` module should be useful: everything else is strictly derived from those inputs. |
@@ -308,7 +308,7 @@ This sections talks about the things which are everywhere and nowhere in particu | |||
308 | 308 | ||
309 | ### Code generation | 309 | ### Code generation |
310 | 310 | ||
311 | Some ]components in this repository are generated through automatic processes. | 311 | Some components in this repository are generated through automatic processes. |
312 | Generated code is updated automatically on `cargo test`. | 312 | Generated code is updated automatically on `cargo test`. |
313 | Generated code is generally committed to the git repository. | 313 | Generated code is generally committed to the git repository. |
314 | 314 | ||