From 5df6073aa5495140c2546016e3be9bd4994e5b1d Mon Sep 17 00:00:00 2001 From: Alex Taing Date: Tue, 5 Jul 2022 17:00:01 -0400 Subject: [PATCH] keep @link AnswersCore for now --- src/models/core/SearchConfig.ts | 8 ++++---- src/provideCore.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/models/core/SearchConfig.ts b/src/models/core/SearchConfig.ts index 544290e1..179dfc13 100644 --- a/src/models/core/SearchConfig.ts +++ b/src/models/core/SearchConfig.ts @@ -2,7 +2,7 @@ import { Endpoints } from './Endpoints'; import { Visitor } from './Visitor'; /** - * The base configuration options for {@link SearchCore}. + * The base configuration options for {@link AnswersCore}. * @public */ export interface BaseSearchConfig { @@ -39,7 +39,7 @@ export interface BaseSearchConfig { } /** - * Configuration options for {@link SearchCore}, which includes the + * Configuration options for {@link AnswersCore}, which includes the * options from {@link BaseSearchConfig}, but requires apiKey. * @public */ @@ -53,7 +53,7 @@ export interface SearchConfigWithApiKey extends BaseSearchConfig { } /** - * Configuration options for {@link SearchCore}, which includes the + * Configuration options for {@link AnswersCore}, which includes the * options from {@link BaseSearchConfig}, but requires token. * @public */ @@ -70,7 +70,7 @@ export interface SearchConfigWithToken extends BaseSearchConfig { } /** - * The main configuration options for {@link SearchCore}. + * The main configuration options for {@link AnswersCore}. * For a full description of the options, see {@link BaseSearchConfig}. * The config requires either an apiKey or a token. * diff --git a/src/provideCore.ts b/src/provideCore.ts index 951f010f..a70e68b8 100644 --- a/src/provideCore.ts +++ b/src/provideCore.ts @@ -11,7 +11,7 @@ import { defaultEndpoints } from './constants'; * The entrypoint to the search-core library. * * @remarks - * Returns an {@link SearchCore} instance. + * Returns an {@link AnswersCore} instance. * * @param config - The search-core config *