diff --git a/Apps/W1/Shopify/app/src/Base/Codeunits/ShpfyBackgroundSyncs.Codeunit.al b/Apps/W1/Shopify/app/src/Base/Codeunits/ShpfyBackgroundSyncs.Codeunit.al
index 0b9020c209..5e453b5016 100644
--- a/Apps/W1/Shopify/app/src/Base/Codeunits/ShpfyBackgroundSyncs.Codeunit.al
+++ b/Apps/W1/Shopify/app/src/Base/Codeunits/ShpfyBackgroundSyncs.Codeunit.al
@@ -232,7 +232,7 @@ codeunit 30101 "Shpfy Background Syncs"
///
/// Synchronizes inventory for a shop.
///
- /// Parameter of type Code[20].
+ /// Code of the shop for which to sync inventory.
internal procedure InventorySync(ShopCode: Code[20])
var
Shop: Record "Shpfy Shop";
@@ -246,7 +246,7 @@ codeunit 30101 "Shpfy Background Syncs"
///
/// Synchronizes inventory for a shop.
///
- /// Parameter of type Record "Shopify Shop".
+ /// Filtered shopify shop record set for which to sync inventory.
internal procedure InventorySync(var Shop: Record "Shpfy Shop")
var
ShopLocation: Record "Shpfy Shop Location";
@@ -258,8 +258,8 @@ codeunit 30101 "Shpfy Background Syncs"
///
/// Synchronizes inventory for a shop.
///
- /// Shopify shop for which to sync inventory.
- /// Shopify shop location for which to sync inventory.
+ /// Filtered shopify shop record set for which to sync inventory.
+ /// Filtered shopify shop location record set for which to sync inventory.
internal procedure InventorySync(var Shop: Record "Shpfy Shop"; var ShopLocation: Record "Shpfy Shop Location")
var
Parameters: Text;