about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorMirko Rainer <mirkorainer@outlook.com>2021-10-12 09:24:00 -0400
committerMirko Rainer <mirkorainer@outlook.com>2021-10-12 09:24:00 -0400
commita1c544f85a1eb62f133d0f413997132a7794cf5d (patch)
treeb64762b305da46d1177de5b9c795ba6fdbbda4b6 /docs/dev
parent64b1c72af2d61495a784d6e97142284761c06437 (diff)
downloadrust-a1c544f85a1eb62f133d0f413997132a7794cf5d.tar.gz
rust-a1c544f85a1eb62f133d0f413997132a7794cf5d.zip
Add link to ECS acronym to clarify.
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index 5ca63e27cfc..43d4e255d34 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -156,7 +156,7 @@ Files are represented with opaque `FileId`, there's no operation to get an `std:
 These crates are the *brain* of rust-analyzer.
 This is the compiler part of the IDE.
 
-`hir_xxx` crates have a strong ECS flavor, in that they work with raw ids and directly query the database.
+`hir_xxx` crates have a strong [ECS](https://en.wikipedia.org/wiki/Entity_component_system) flavor, in that they work with raw ids and directly query the database.
 There's little abstraction here.
 These crates integrate deeply with salsa and chalk.