Skip to content

Commit 0b6317c

Browse files
committed
docs: update
1 parent 32756b9 commit 0b6317c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/en/4-concepts/4.3-runtime-execution-context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In Open Data Capture, code runs on both the client and server. You should theref
1515

1616
```ts
1717
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
18-
import { z } from '/runtime/v1/zod@3.23.x';
18+
import { z } from '/runtime/v1/[email protected]';
1919

2020
const button = document.createElement('button');
2121
button.textContent = 'Submit Instrument';
@@ -46,7 +46,7 @@ To fix the instrument, there are two options:
4646

4747
```ts
4848
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
49-
import { z } from '/runtime/v1/zod@3.23.x';
49+
import { z } from '/runtime/v1/[email protected]';
5050

5151
function createButton() {
5252
const button = document.createElement('button');

docs/en/5-reference/5.0-form-instrument.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Always consider using \`group\`ing to structure sections
7676

7777
```js
7878
import { defineInstrument } from '/runtime/v1/@opendatacapture/runtime-core';
79-
import { z } from '/runtime/v1/zod@3.23.x';
79+
import { z } from '/runtime/v1/[email protected]';
8080

8181
export default defineInstrument({
8282
kind: 'FORM',

0 commit comments

Comments
 (0)