Skip to content

Commit b2260a8

Browse files
authored
Fix links to docs (#2733)
1 parent d5d5389 commit b2260a8

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ general concepts in solid-client; documentation about those can be found at the
77
following Resources:
88

99
- General documentation:
10-
https://docs.inrupt.com/developer-tools/javascript/client-libraries/using-libraries/
10+
https://docs.inrupt.com/sdk/javascript-sdkusing-libraries/
1111
- Glossary:
12-
https://docs.inrupt.com/developer-tools/javascript/client-libraries/reference/glossary/
12+
https://docs.inrupt.com/sdk/javascript-sdkreference/glossary/
1313

1414
It can also be insightful to use `git blame` liberally. We've generally kept
1515
fairly good Git hygiene, so reading the commit that introduced some code can be

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ the browser](https://www.npmjs.com/package/@inrupt/solid-client-authn-browser).
1313
The security policy for these libraries is available in the associated [GitHub repository](https://github.com/inrupt/solid-client-authn-js/blob/main/SECURITY.md).
1414

1515
This library also exposes functions to modify data access permissions. We
16-
strive to make the API and [documentation](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
16+
strive to make the API and [documentation](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
1717
as clear and intuitive as possible, because misuse of these functions may result
1818
in exposing data beyond what is intended. Please do open an
1919
[issue](https://github.com/inrupt/solid-client-js/issues) if you face difficulties

src/acp/ess2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* them will be included in your bundle.
3434
*
3535
* For more information see: [Tutorial: Managing
36-
* Access](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
36+
* Access](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
3737
* :::
3838
*
3939
* This module supports Inrupt's ESS 2.0 ACP implementation.

src/resource/file.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function containsReserved(header: Record<string, string>): boolean {
7070
* ```
7171
*
7272
* For additional examples, see
73-
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#retrieve-a-file).
73+
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#retrieve-a-file).
7474
*
7575
* @param fileUrl The URL of the file to return
7676
* @param options Fetching options: a custom fetcher and/or headers.
@@ -119,7 +119,7 @@ export async function getFile(
119119
* ```
120120
*
121121
* For additional examples, see
122-
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#delete-a-file).
122+
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#delete-a-file).
123123
*
124124
* @param file The URL of the file to delete or the file itself (if it has ResourceInfo).
125125
*/
@@ -176,7 +176,7 @@ type SaveFileOptions = WriteFileOptions & {
176176
* ```
177177
*
178178
* For additional example, see
179-
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#save-a-file-into-an-existing-container).
179+
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#save-a-file-into-an-existing-container).
180180
*
181181
* In the `options` parameter,
182182
*
@@ -285,7 +285,7 @@ export type WriteFileOptions = GetFileOptions & {
285285
* ```
286286
*
287287
* For additional example, see
288-
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#write-a-file-to-a-specific-url).
288+
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#write-a-file-to-a-specific-url).
289289
*
290290
* *Recommended:* In the `options` parameter, you can specify the
291291
* [media type](https://developer.mozilla.org/en-US/docs/Glossary/MIME_type)

src/resource/solidDataset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ async function prepareSolidDatasetCreation(
338338
* the changelog tracks both the old value and new values of the property being modified. This
339339
* function applies the changes to the current SolidDataset. If the old value specified in the
340340
* changelog does not correspond to the value currently in the Pod, this function will throw an
341-
* error (common issues are listed in [the documentation](https://docs.inrupt.com/developer-tools/javascript/client-libraries/reference/error-codes/)).
341+
* error (common issues are listed in [the documentation](https://docs.inrupt.com/sdk/javascript-sdkreference/error-codes/)).
342342
*
343343
* The SolidDataset returned by this function will contain the data sent to the Pod, and a ChangeLog
344344
* up-to-date with the saved data. Note that if the data on the server was modified in between the

src/universal/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* applications.
3535
*
3636
* For more information see: [Tutorial: Managing
37-
* Access](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
37+
* Access](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
3838
* :::
3939
*
4040
* This module can be imported as an object from the main package, which results

0 commit comments

Comments
 (0)