@@ -123,7 +123,7 @@ This section documents our most commonly used API methods. Additional APIs are d
123123Arguments:
124124
125125* ** url** ` string | URL | UrlObject `
126- * ** options** [ ` RequestOptions ` ] ( ./docs/api/Dispatcher.md#parameter-requestoptions )
126+ * ** options** [ ` RequestOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-requestoptions )
127127 * ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
128128 * ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
129129 * ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -132,14 +132,14 @@ Returns a promise with the result of the `Dispatcher.request` method.
132132
133133Calls ` options.dispatcher.request(options) ` .
134134
135- See [ Dispatcher.request] ( ./docs/api/Dispatcher.md#dispatcherrequestoptions-callback ) for more details, and [ request examples] ( ./examples/README.md ) for examples.
135+ See [ Dispatcher.request] ( ./docs/docs/ api/Dispatcher.md#dispatcherrequestoptions-callback ) for more details, and [ request examples] ( ./examples/README.md ) for examples.
136136
137137### ` undici.stream([url, options, ]factory): Promise `
138138
139139Arguments:
140140
141141* ** url** ` string | URL | UrlObject `
142- * ** options** [ ` StreamOptions ` ] ( ./docs/api/Dispatcher.md#parameter-streamoptions )
142+ * ** options** [ ` StreamOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-streamoptions )
143143 * ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
144144 * ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
145145 * ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -149,14 +149,14 @@ Returns a promise with the result of the `Dispatcher.stream` method.
149149
150150Calls ` options.dispatcher.stream(options, factory) ` .
151151
152- See [ Dispatcher.stream] ( ./docs/api/Dispatcher.md#dispatcherstreamoptions-factory-callback ) for more details.
152+ See [ Dispatcher.stream] ( ./docs/docs/ api/Dispatcher.md#dispatcherstreamoptions-factory-callback ) for more details.
153153
154154### ` undici.pipeline([url, options, ]handler): Duplex `
155155
156156Arguments:
157157
158158* ** url** ` string | URL | UrlObject `
159- * ** options** [ ` PipelineOptions ` ] ( ./docs/api/Dispatcher.md#parameter-pipelineoptions )
159+ * ** options** [ ` PipelineOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-pipelineoptions )
160160 * ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
161161 * ** method** ` String ` - Default: ` PUT ` if ` options.body ` , otherwise ` GET `
162162 * ** maxRedirections** ` Integer ` - Default: ` 0 `
@@ -166,7 +166,7 @@ Returns: `stream.Duplex`
166166
167167Calls ` options.dispatch.pipeline(options, handler) ` .
168168
169- See [ Dispatcher.pipeline] ( ./docs/api/Dispatcher.md#dispatcherpipelineoptions-handler ) for more details.
169+ See [ Dispatcher.pipeline] ( ./docs/docs/ api/Dispatcher.md#dispatcherpipelineoptions-handler ) for more details.
170170
171171### ` undici.connect([url, options]): Promise `
172172
@@ -175,7 +175,7 @@ Starts two-way communications with the requested resource using [HTTP CONNECT](h
175175Arguments:
176176
177177* ** url** ` string | URL | UrlObject `
178- * ** options** [ ` ConnectOptions ` ] ( ./docs/api/Dispatcher.md#parameter-connectoptions )
178+ * ** options** [ ` ConnectOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-connectoptions )
179179 * ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
180180 * ** maxRedirections** ` Integer ` - Default: ` 0 `
181181* ** callback** ` (err: Error | null, data: ConnectData | null) => void ` (optional)
@@ -184,7 +184,7 @@ Returns a promise with the result of the `Dispatcher.connect` method.
184184
185185Calls ` options.dispatch.connect(options) ` .
186186
187- See [ Dispatcher.connect] ( ./docs/api/Dispatcher.md#dispatcherconnectoptions-callback ) for more details.
187+ See [ Dispatcher.connect] ( ./docs/docs/ api/Dispatcher.md#dispatcherconnectoptions-callback ) for more details.
188188
189189### ` undici.fetch(input[, init]): Promise `
190190
@@ -335,7 +335,7 @@ Upgrade to a different protocol. See [MDN - HTTP - Protocol upgrade mechanism](h
335335Arguments:
336336
337337* ** url** ` string | URL | UrlObject `
338- * ** options** [ ` UpgradeOptions ` ] ( ./docs/api/Dispatcher.md#parameter-upgradeoptions )
338+ * ** options** [ ` UpgradeOptions ` ] ( ./docs/docs/ api/Dispatcher.md#parameter-upgradeoptions )
339339 * ** dispatcher** ` Dispatcher ` - Default: [ getGlobalDispatcher] ( #undicigetglobaldispatcher )
340340 * ** maxRedirections** ` Integer ` - Default: ` 0 `
341341* ** callback** ` (error: Error | null, data: UpgradeData) => void ` (optional)
@@ -344,7 +344,7 @@ Returns a promise with the result of the `Dispatcher.upgrade` method.
344344
345345Calls ` options.dispatcher.upgrade(options) ` .
346346
347- See [ Dispatcher.upgrade] ( ./docs/api/Dispatcher.md#dispatcherupgradeoptions-callback ) for more details.
347+ See [ Dispatcher.upgrade] ( ./docs/docs/ api/Dispatcher.md#dispatcherupgradeoptions-callback ) for more details.
348348
349349### ` undici.setGlobalDispatcher(dispatcher) `
350350
0 commit comments