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` # `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. You can attach events if you need to know what is going on while its processing.
## Example ## Example

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
# `ProviderControls.getMetadata` # `ProviderControls.getMetadata`
Get meta data for a scraper, can be either source or embed scraper. 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 ## Example