From d96b54eb23b26494c9c05d0cb659052915c9ecd2 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Thu, 15 Jul 2021 15:02:37 +0200 Subject: [PATCH] Use Text not String in exception docs (#10287) changelog_begin changelog_end --- docs/source/daml/code-snippets-dev/Exceptions.daml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/daml/code-snippets-dev/Exceptions.daml b/docs/source/daml/code-snippets-dev/Exceptions.daml index ce5e98375b91..e475783058b6 100644 --- a/docs/source/daml/code-snippets-dev/Exceptions.daml +++ b/docs/source/daml/code-snippets-dev/Exceptions.daml @@ -16,7 +16,7 @@ template Error exception MyException with field1 : Int - field2 : String + field2 : Text where message "MyException(" <> show field1 <> ", " <> show field2 <> ")" -- END_EXCEPTION