From bf103da02bf8a050803f72ce53c412fd0bb9c531 Mon Sep 17 00:00:00 2001 From: Aleksander Sklorz Date: Fri, 17 Feb 2023 08:38:11 +0100 Subject: [PATCH] ACS-4565 Replaced tags label with categories label in doc --- docs/content-services/services/category.service.md | 2 +- .../src/lib/category/services/category.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content-services/services/category.service.md b/docs/content-services/services/category.service.md index d94d2023445..333415d5b42 100644 --- a/docs/content-services/services/category.service.md +++ b/docs/content-services/services/category.service.md @@ -35,7 +35,7 @@ Manages categories in Content Services. - **Returns** [`Observable`](http://reactivex.io/documentation/observable.html)`` - Null object when the operation completes - **searchCategories**(name: `string`, skipCount: `number`, maxItems?: `number`): [`Observable`](http://reactivex.io/documentation/observable.html)`<`[`ResultSetPaging`](https://github.com/Alfresco/alfresco-js-api/blob/develop/src/api/search-rest-api/docs/ResultSetPaging.md)`>`
Searches categories by their name. - - _name:_ `string` - Value for name which should be used during searching tags. + - _name:_ `string` - Value for name which should be used during searching categories. - _skipCount:_ `number` - Specify how many first results should be skipped. Default 0. - _maxItems:_ `number` - Specify max number of returned categories. Default is specified by UserPreferencesService. - **Returns** [`Observable`](http://reactivex.io/documentation/observable.html)`<`[`ResultSetPaging`](https://github.com/Alfresco/alfresco-js-api/blob/develop/src/api/search-rest-api/docs/ResultSetPaging.md)`>` - Found categories which name contains searched name. diff --git a/lib/content-services/src/lib/category/services/category.service.ts b/lib/content-services/src/lib/category/services/category.service.ts index 0ee32b56322..bfb772d9399 100644 --- a/lib/content-services/src/lib/category/services/category.service.ts +++ b/lib/content-services/src/lib/category/services/category.service.ts @@ -92,7 +92,7 @@ export class CategoryService { /** * Searches categories by their name. * - * @param name Value for name which should be used during searching tags. + * @param name Value for name which should be used during searching categories. * @param skipCount Specify how many first results should be skipped. Default 0. * @param maxItems Specify max number of returned categories. Default is specified by UserPreferencesService. * @return Observable Found categories which name contains searched name.