Review suggestions

This commit is contained in:
mrjvs 2023-09-27 20:51:54 +02:00
parent 42a27a2fe0
commit 32ec63b7c3
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# `ProviderControls.runAll`
Run all providers one by one in order of their builtin ranking.
Run all providers one by one in order of their built-in ranking.
You can attach events if you need to know what is going on while its processing.
## Example

View File

@ -7,7 +7,7 @@ They are sorted by rank, highest first
```ts
const sourceScrapers = providers.listSources();
// garuanteed to only return type: 'source'
// Guaranteed to only return type: 'source'
```
## Type

View File

@ -7,7 +7,7 @@ They are sorted by rank, highest first
```ts
const embedScrapers = providers.listEmbeds();
// garuanteed to only return type: 'embed'
// Guaranteed to only return type: 'embed'
```
## Type

View File

@ -1,7 +1,7 @@
# `ProviderControls.getMetadata`
Get meta data for a scraper, can be either source or embed scraper.
Returns null if id is not recognized.
Returns null if the `id` is not recognized.
## Example