aboutsummaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-04-08 15:51:02 +0100
committerLaurenČ›iu Nicola <[email protected]>2021-04-08 15:51:19 +0100
commit7221188b0d5824061a6dfae6d339fe06edcc087a (patch)
treeeb0ed4d1a6321bbd0414ac721c23e0720186f37b /docs/dev
parenteb248d85a0eb91bae7bafcd69ffe4dfed3e32fce (diff)
Remove extra bracket in architecture docs
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/architecture.md4
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
141We use the [salsa](https://github.com/salsa-rs/salsa) crate for incremental and on-demand computation. 141We use the [salsa](https://github.com/salsa-rs/salsa) crate for incremental and on-demand computation.
142Roughly, you can think of salsa as a key-value store, but it can also compute derived values using specified functions. 142Roughly, you can think of salsa as a key-value store, but it can also compute derived values using specified functions.
143The `base_db` crate provides basic infrastructure for interacting with salsa. 143The `base_db` crate provides basic infrastructure for interacting with salsa.
144Crucially, it defines most of the "input" queries: facts supplied by the client of the analyzer. 144Crucially, it defines most of the "input" queries: facts supplied by the client of the analyzer.
145Reading the docs of the `base_db::input` module should be useful: everything else is strictly derived from those inputs. 145Reading 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
311Some ]components in this repository are generated through automatic processes. 311Some components in this repository are generated through automatic processes.
312Generated code is updated automatically on `cargo test`. 312Generated code is updated automatically on `cargo test`.
313Generated code is generally committed to the git repository. 313Generated code is generally committed to the git repository.
314 314