From 5bc36ca25ca7f9cef4ab0ac95b2e60f6b62df976 Mon Sep 17 00:00:00 2001 From: Tine Staric Date: Fri, 15 Mar 2024 15:58:37 +0200 Subject: [PATCH] Adjust documentation --- .../src/Base/Codeunits/ShpfyBackgroundSyncs.Codeunit.al | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;