aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin D. Howard <gavin@gavinhoward.com>2023-02-27 22:44:18 -0700
committerGavin D. Howard <gavin@gavinhoward.com>2023-02-27 22:44:18 -0700
commit79f74149c05f0151157986bc21d3d74fbcae77b2 (patch)
treef4c8a87a2ffc77f384b6a435125fe24ddc6dba66
parent66d1367ce01e5779e1b3597c6082f4595a4618ad (diff)
downloadbc-79f74149c05f0151157986bc21d3d74fbcae77b2.tar.gz
Add a missing bit of information to the development manual
Signed-off-by: Gavin D. Howard <gavin@gavinhoward.com>
-rw-r--r--manuals/development.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/manuals/development.md b/manuals/development.md
index b81fdbca..f1441859 100644
--- a/manuals/development.md
+++ b/manuals/development.md
@@ -896,6 +896,8 @@ data structures.
Vectors are what do the heavy lifting in almost all of `bc`'s data structures.
Even the maps of identifiers and arrays use vectors.
+The code associated with this header is in [`src/vector.c`][228].
+
#### `version.h`
This header defines the version of `bc`.
@@ -5209,3 +5211,4 @@ However, where possible, errors are returned directly.
[225]: #allsh
[226]: #errorssh
[227]: #errorsh
+[228]: #vectorc