From 3c4c2f29a4f3d923a48fdbca160759d69a39fb6e Mon Sep 17 00:00:00 2001 From: Lars Rickert Date: Fri, 5 Aug 2022 21:14:01 +0200 Subject: [PATCH] docs: update search options documentation --- docs/api/core.md | 2 +- src/types/engines.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/core.md b/docs/api/core.md index 8726879..2906f94 100644 --- a/docs/api/core.md +++ b/docs/api/core.md @@ -723,7 +723,7 @@ interface SearchOptions { source?: string; /** * Limit number of tracks to search. - * Not supported when searching Spotify track. Due to Spotify limitations, only first 100 playlist tracks are searched. + * Not supported when searching single Spotify track. Due to Spotify limitations, only first 100 playlist tracks are searched. */ limit?: number; } diff --git a/src/types/engines.ts b/src/types/engines.ts index 26ceaae..dde3f5e 100644 --- a/src/types/engines.ts +++ b/src/types/engines.ts @@ -33,7 +33,7 @@ export interface SearchOptions { source?: string; /** * Limit number of tracks to search. - * Not supported when searching Spotify track. Due to Spotify limitations, only first 100 playlist tracks are searched. + * Not supported when searching single Spotify track. Due to Spotify limitations, only first 100 playlist tracks are searched. */ limit?: number; }