Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
topheman committed Oct 24, 2024
1 parent 802b24b commit b05bfb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ My goal is to keep track of my findings and understandings. By open-sourcing thi

If you feel like contributing, please do. I try not to link to too specific implementations (which can change over the time).

An html version is available at <https://github.com/topheman/toolchain-notes>
An html version is available at <https://topheman.github.io/toolchain-notes/>

[You can also read the book directly on github](./src/SUMMARY.md).

Expand Down
4 changes: 2 additions & 2 deletions src/napi/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# napi

https://napi.rs
<https://napi.rs>

From the node docs: https://nodejs.org/api/n-api.html
From the node docs: <https://nodejs.org/api/n-api.html>

> Node-API (formerly N-API) is an API for building native Addons. It is independent from the underlying JavaScript runtime (for example, V8) and is maintained as part of Node.js itself. This API will be Application Binary Interface (ABI) stable across versions of Node.js. It is intended to insulate addons from changes in the underlying JavaScript engine and allow modules compiled for one major version to run on later major versions of Node.js without recompilation. The ABI Stability guide provides a more in-depth explanation.
2 changes: 1 addition & 1 deletion src/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
Some rust specifics

- [`DashMap`](https://docs.rs/dashmap/latest/dashmap/) is an implementation of a concurrent associative array/hashmap in Rust.
- [`std::sync::LazyLock`] - A value which is initialized on the first access.
- [`std::sync::LazyLock`](https://doc.rust-lang.org/beta/std/sync/struct.LazyLock.html) - A value which is initialized on the first access.
- [`string_wizard::MagicString`](https://docs.rs/string_wizard/0.0.22/string_wizard/struct.MagicString.html) / [`magic-string`](https://github.com/Rich-Harris/magic-string)
- performant updates on large strings (like source-maps)

0 comments on commit b05bfb2

Please sign in to comment.