Skip to content

Commit

Permalink
Adjust documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tine Staric committed Mar 15, 2024
1 parent c5fc2a8 commit 5bc36ca
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ codeunit 30101 "Shpfy Background Syncs"
/// <summary>
/// Synchronizes inventory for a shop.
/// </summary>
/// <param name="ShopCode">Parameter of type Code[20].</param>
/// <param name="ShopCode">Code of the shop for which to sync inventory.</param>
internal procedure InventorySync(ShopCode: Code[20])
var
Shop: Record "Shpfy Shop";
Expand All @@ -246,7 +246,7 @@ codeunit 30101 "Shpfy Background Syncs"
/// <summary>
/// Synchronizes inventory for a shop.
/// </summary>
/// <param name="Shop">Parameter of type Record "Shopify Shop".</param>
/// <param name="Shop">Filtered shopify shop record set for which to sync inventory.</param>
internal procedure InventorySync(var Shop: Record "Shpfy Shop")
var
ShopLocation: Record "Shpfy Shop Location";
Expand All @@ -258,8 +258,8 @@ codeunit 30101 "Shpfy Background Syncs"
/// <summary>
/// Synchronizes inventory for a shop.
/// </summary>
/// <param name="Shop">Shopify shop for which to sync inventory.</param>
/// <param name="ShopLocation">Shopify shop location for which to sync inventory.</param>
/// <param name="Shop">Filtered shopify shop record set for which to sync inventory.</param>
/// <param name="ShopLocation">Filtered shopify shop location record set for which to sync inventory.</param>
internal procedure InventorySync(var Shop: Record "Shpfy Shop"; var ShopLocation: Record "Shpfy Shop Location")
var
Parameters: Text;
Expand Down

0 comments on commit 5bc36ca

Please sign in to comment.