diff --git a/Kontent.Ai.Delivery.Abstractions/DeliveryClientExtensions.cs b/Kontent.Ai.Delivery.Abstractions/DeliveryClientExtensions.cs index 3adc6caf..908ca06d 100644 --- a/Kontent.Ai.Delivery.Abstractions/DeliveryClientExtensions.cs +++ b/Kontent.Ai.Delivery.Abstractions/DeliveryClientExtensions.cs @@ -94,7 +94,7 @@ public static Task PostSyncInitAsync(this IDeliveryCl /// /// An instance of the /// The codename of a content item. - /// An array that contains zero or more query parameters, for example, for filtering or ordering. + /// An array that contains zero or more query parameters for filtering. /// The instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated. public static IDeliveryItemsFeed GetItemUsedIn(this IDeliveryClient client, string codename, params IQueryParameter[] parameters) { @@ -106,7 +106,7 @@ public static IDeliveryItemsFeed GetItemUsedIn(this IDeliveryClient /// /// An instance of the /// The codename of an asset. - /// An array that contains zero or more query parameters, for example, for filtering, or ordering. + /// An array that contains zero or more query parameters for filtering. /// The instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated. public static IDeliveryItemsFeed GetAssetUsedIn(this IDeliveryClient client, string codename, params IQueryParameter[] parameters) { diff --git a/Kontent.Ai.Delivery.Abstractions/IDeliveryClient.cs b/Kontent.Ai.Delivery.Abstractions/IDeliveryClient.cs index 6b76cfd0..f644d704 100644 --- a/Kontent.Ai.Delivery.Abstractions/IDeliveryClient.cs +++ b/Kontent.Ai.Delivery.Abstractions/IDeliveryClient.cs @@ -94,7 +94,7 @@ public interface IDeliveryClient /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of a content item. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetItemUsedIn(string codename, IEnumerable parameters = null); @@ -102,7 +102,7 @@ public interface IDeliveryClient /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of an asset. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetAssetUsedIn(string codename, IEnumerable parameters = null); } diff --git a/Kontent.Ai.Delivery.Caching/DeliveryClientCache.cs b/Kontent.Ai.Delivery.Caching/DeliveryClientCache.cs index 3ea988ad..3310193f 100644 --- a/Kontent.Ai.Delivery.Caching/DeliveryClientCache.cs +++ b/Kontent.Ai.Delivery.Caching/DeliveryClientCache.cs @@ -180,7 +180,7 @@ public Task GetSyncAsync(string continuationToken) /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of a content item. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetItemUsedIn(string codename, IEnumerable parameters = null) { @@ -191,7 +191,7 @@ public IDeliveryItemsFeed GetItemUsedIn(string codename, IEnumerabl /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of an asset. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetAssetUsedIn(string codename, IEnumerable parameters = null) { diff --git a/Kontent.Ai.Delivery/DeliveryClient.cs b/Kontent.Ai.Delivery/DeliveryClient.cs index 19f6cdec..c7b2a637 100644 --- a/Kontent.Ai.Delivery/DeliveryClient.cs +++ b/Kontent.Ai.Delivery/DeliveryClient.cs @@ -368,7 +368,7 @@ public async Task GetSyncAsync(string continuationToken) /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of a content item. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetItemUsedIn(string codename, IEnumerable parameters = null) { @@ -382,7 +382,7 @@ public IDeliveryItemsFeed GetItemUsedIn(string codename, IEnumerabl /// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters. /// /// The codename of an asset. - /// A collection of query parameters, for example, for filtering or ordering. + /// A collection of query parameters for filtering. /// The instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated. public IDeliveryItemsFeed GetAssetUsedIn(string codename, IEnumerable parameters = null) {