diff options
author | thomas <ster.bzh@gmail.com> | 2020-06-09 14:13:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 14:13:32 +0200 |
commit | 81a6f673ad48f15183575105016509e7743ff0ac (patch) | |
tree | 83ec4ee0d9aaad436fd36cfee88ac1fc8b5cd14e /docs/contributing/architecture.md | |
parent | 2b2d800b43e548e615abef80278d20dda5ae7d42 (diff) |
docs(contributing): fix links to rid and metrics (#6191)
Diffstat (limited to 'docs/contributing/architecture.md')
-rw-r--r-- | docs/contributing/architecture.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/contributing/architecture.md b/docs/contributing/architecture.md index 0a1ba3b4d..511bb52e0 100644 --- a/docs/contributing/architecture.md +++ b/docs/contributing/architecture.md @@ -2,15 +2,15 @@ ### Deno and Linux analogy -| **Linux** | **Deno** | -| ------------------------------: | :------------------------------- | -| Processes | Web Workers | -| Syscalls | Ops | -| File descriptors (fd) | [Resource ids (rid)](#resources) | -| Scheduler | Tokio | -| Userland: libc++ / glib / boost | https://deno.land/std/ | -| /proc/\$\$/stat | [Deno.metrics()](#metrics) | -| man pages | deno types | +| **Linux** | **Deno** | +| ------------------------------: | :------------------------------------------- | +| Processes | Web Workers | +| Syscalls | Ops | +| File descriptors (fd) | [Resource ids (rid)](architecture#resources) | +| Scheduler | Tokio | +| Userland: libc++ / glib / boost | https://deno.land/std/ | +| /proc/\$\$/stat | [Deno.metrics()](architecture#metrics) | +| man pages | deno types | #### Resources |