Skip to content

Commit

Permalink
chore: fix documentation link
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Nov 5, 2024
1 parent 18ff16c commit 115ee4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/classes/RIDB.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ await db.start({
})
```

A compatible storage should be a class implementing [BaseStorage<RIDBTypes.SchemaType> ](../namespaces/RIDBTypes/classes/BaseStorage.md) and its methods.
A compatible storage should be a class implementing [StorageInternal<RIDBTypes.SchemaType> ](../namespaces/RIDBTypes/classes/StorageInternal.md) and its methods.

### Using with migration plugin
The migration plugin will automatically migrate your documents for you as you upgrade and change your schemas over the time.
Expand Down Expand Up @@ -106,7 +106,7 @@ Creates an instance of RIDB.

#### Defined in

[ts/src/index.ts:145](https://github.com/elribonazo/RIDB/blob/b30a45c415053519344afdb368cd44f51be96bb3/ts/src/index.ts#L145)
[ts/src/index.ts:145](https://github.com/elribonazo/RIDB/blob/18ff16c9e22fc67c657be965ea0b226dde8a7772/ts/src/index.ts#L145)

## Accessors

Expand All @@ -126,7 +126,7 @@ The collections object.

#### Defined in

[ts/src/index.ts:184](https://github.com/elribonazo/RIDB/blob/b30a45c415053519344afdb368cd44f51be96bb3/ts/src/index.ts#L184)
[ts/src/index.ts:184](https://github.com/elribonazo/RIDB/blob/18ff16c9e22fc67c657be965ea0b226dde8a7772/ts/src/index.ts#L184)

## Methods

Expand All @@ -152,4 +152,4 @@ A promise that resolves to the database instance.

#### Defined in

[ts/src/index.ts:225](https://github.com/elribonazo/RIDB/blob/b30a45c415053519344afdb368cd44f51be96bb3/ts/src/index.ts#L225)
[ts/src/index.ts:225](https://github.com/elribonazo/RIDB/blob/18ff16c9e22fc67c657be965ea0b226dde8a7772/ts/src/index.ts#L225)
2 changes: 1 addition & 1 deletion docs/variables/SchemaFieldType.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ An enumeration of schema field types.
## Defined in

[ts/src/index.ts:280](https://github.com/elribonazo/RIDB/blob/b30a45c415053519344afdb368cd44f51be96bb3/ts/src/index.ts#L280)
[ts/src/index.ts:280](https://github.com/elribonazo/RIDB/blob/18ff16c9e22fc67c657be965ea0b226dde8a7772/ts/src/index.ts#L280)
2 changes: 1 addition & 1 deletion ts/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class MySimplePlugin extends RIDBTypes.BasePlugin {
* })
* ```
*
* A compatible storage should be a class implementing [BaseStorage<RIDBTypes.SchemaType> ](../namespaces/RIDBTypes/classes/BaseStorage.md) and its methods.
* A compatible storage should be a class implementing [StorageInternal<RIDBTypes.SchemaType> ](../namespaces/RIDBTypes/classes/StorageInternal.md) and its methods.
*
* ### Using with migration plugin
* The migration plugin will automatically migrate your documents for you as you upgrade and change your schemas over the time.
Expand Down

0 comments on commit 115ee4f

Please sign in to comment.