Skip to content

Commit 6b9d88c

Browse files
committed
[Old docs] Relative links
1 parent e0a0549 commit 6b9d88c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pages/docs/manual/v8.0.0/build-performance.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ In short, thanks to our bsc compiler and bsb build system's architecture, we're
6363

6464
## Speed Up Incremental Build
6565

66-
ReScript uses the concept of interface files (`.rei`) (or, equivalently, [module signatures](/docs/manual/latest/module#signatures)). Exposing only what you need naturally speeds up incremental builds. E.g. if you change a `.re` file whose corresponding `.rei` file doesn't expose the changed part, then you've reduced the amount of dependent files you have to rebuild.
66+
ReScript uses the concept of interface files (`.rei`) (or, equivalently, [module signatures](module.md#signatures)). Exposing only what you need naturally speeds up incremental builds. E.g. if you change a `.re` file whose corresponding `.rei` file doesn't expose the changed part, then you've reduced the amount of dependent files you have to rebuild.
6767

6868
<!-- TODO: validate this -->
6969

pages/docs/manual/v8.0.0/variant.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ If you come from an untyped language, you might be tempted to try `type myType =
157157

158158
### Interop with JavaScript
159159

160-
_This section assumes knowledge about our [FFI](/docs/reason-compiler/latest/interop-overview). Skip this if you haven't felt the itch to use variants for wrapping JS functions yet_.
160+
_This section assumes knowledge about our JavaScript interop. Skip this if you haven't felt the itch to use variants for wrapping JS functions yet_.
161161

162162
Quite a few JS libraries use functions that can accept many types of arguments. In these cases, it's very tempting to model them as variants. For example, suppose there's a `myLibrary.draw` JS function that takes in either a `number` or a `string`. You might be tempted to bind it like so:
163163

0 commit comments

Comments
 (0)