From 021ad3aebfd947b8b3c9a6229b3038977d2a9350 Mon Sep 17 00:00:00 2001 From: Yurii Bliuchak <1957659+bliuchak@users.noreply.github.com> Date: Mon, 25 Aug 2025 10:25:17 +0200 Subject: [PATCH 1/2] fix: repair formatting of code snippet in metamorph.md --- .../actors/development/programming_interface/metamorph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/metamorph.md b/sources/platform/actors/development/programming_interface/metamorph.md index 245287cfbc..52519472df 100644 --- a/sources/platform/actors/development/programming_interface/metamorph.md +++ b/sources/platform/actors/development/programming_interface/metamorph.md @@ -33,7 +33,7 @@ These benefits make metamorph a valuable tool for creating complex, efficient wo ## Implementation guidelines -To make your Actor compatible with metamorph, use `Actor.getInput()` instead of `Actor.getValue(`INPUT`)`. This method fetches the input using the correct key (_INPUT-METAMORPH-1_) for metamorphed runs, ensuring proper data retrieval in transformed Actor runs. +To make your Actor compatible with metamorph, use `Actor.getInput()` instead of ``Actor.getValue(`INPUT`)``. This method fetches the input using the correct key (_INPUT-METAMORPH-1_) for metamorphed runs, ensuring proper data retrieval in transformed Actor runs. :::note Runtime limits From 0138caa548413103a2e4569d0d861cb50e74618b Mon Sep 17 00:00:00 2001 From: Yurii Bliuchak <1957659+bliuchak@users.noreply.github.com> Date: Mon, 25 Aug 2025 10:39:26 +0200 Subject: [PATCH 2/2] fix: use straight apostrophe instead of backtick MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Martin Adámek --- .../actors/development/programming_interface/metamorph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/metamorph.md b/sources/platform/actors/development/programming_interface/metamorph.md index 52519472df..26c2fd3d65 100644 --- a/sources/platform/actors/development/programming_interface/metamorph.md +++ b/sources/platform/actors/development/programming_interface/metamorph.md @@ -33,7 +33,7 @@ These benefits make metamorph a valuable tool for creating complex, efficient wo ## Implementation guidelines -To make your Actor compatible with metamorph, use `Actor.getInput()` instead of ``Actor.getValue(`INPUT`)``. This method fetches the input using the correct key (_INPUT-METAMORPH-1_) for metamorphed runs, ensuring proper data retrieval in transformed Actor runs. +To make your Actor compatible with metamorph, use `Actor.getInput()` instead of `Actor.getValue('INPUT')`. This method fetches the input using the correct key (_INPUT-METAMORPH-1_) for metamorphed runs, ensuring proper data retrieval in transformed Actor runs. :::note Runtime limits