From ced983249cb34243f813262ccff784fcb45ebfc9 Mon Sep 17 00:00:00 2001 From: Naresh Date: Mon, 11 Jul 2022 09:32:11 +0100 Subject: [PATCH] Update index.md Fixed the code example with missing parenthesis. --- content/docs/patterns/api-register-fieldset/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/patterns/api-register-fieldset/index.md b/content/docs/patterns/api-register-fieldset/index.md index de6f2501..b091e808 100644 --- a/content/docs/patterns/api-register-fieldset/index.md +++ b/content/docs/patterns/api-register-fieldset/index.md @@ -64,7 +64,7 @@ Some examples to work with the list of fields: trigger OnModifyRecord(): Boolean begin - ItemAPIOperations.ModifyItem(Rec, TempFieldSet; + ItemAPIOperations.ModifyItem(Rec, TempFieldSet); exit(false); end; @@ -105,4 +105,4 @@ codeunit 50000 "Item API Operations" ``` ## Benefits -Having a list of fields that are part of the API request provides more information during to the insert or modify operation. This helps to implement specific behavior, based on which fields were specified in the API request. \ No newline at end of file +Having a list of fields that are part of the API request provides more information during to the insert or modify operation. This helps to implement specific behavior, based on which fields were specified in the API request.