fix links

This commit is contained in:
Jacob Nguyen
2024-05-27 15:24:32 -05:00
parent 5abf123935
commit fb736be2d2
3 changed files with 3 additions and 3 deletions

View File

@@ -139,5 +139,5 @@ export default commandModule({
```
## Service
Service api is used for places where sern cannot inject into parameters properly. [View](../../../v3/guide/walkthrough/services/)
Service api is used for places where sern cannot inject into parameters properly. [View](/v3/guide/walkthrough/services/)

View File

@@ -10,7 +10,7 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';
## Introduction
sern operates with **modules**. At its core, modules contain `type`,`execute`, and [`plugins`](../plugins) (code ran before `execute`).
sern operates with **modules**. At its core, modules contain `type`,`execute`, and [`plugins`](/v4/reference/plugins) (code ran before `execute`).
## Modules

View File

@@ -122,7 +122,7 @@ const controller = {
```
### Passing state with SDT
> SDT = state, [dependencies](../dependencies), type (very creative)
> SDT = state, [dependencies](/v4/reference/dependencies), type (very creative)
Controllers can pass data downstream. That is, plugins can recieve data from previous plugin calls.
If all control plugins are successful, the final state is passed to the module `execute`.