From 7927a41a45a7730765a1c1309e5750603c3b13fe Mon Sep 17 00:00:00 2001 From: Danny Gleckler Date: Wed, 28 Aug 2024 21:11:30 -0400 Subject: [PATCH] Fix "Allow immutable input declarative selectors" example --- exploration/selection-declaration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exploration/selection-declaration.md b/exploration/selection-declaration.md index 6536ddbd87..8035b2943b 100644 --- a/exploration/selection-declaration.md +++ b/exploration/selection-declaration.md @@ -329,7 +329,7 @@ This implies that multiple selecton on the same operand is pointless. .match {$num :number maximumFractionDigits=0} * {{This message produces a Duplicate Declaration error}} -.input {$num :integer} {$num :number} +.match {$num :integer} {$num :number} * * {{This message produces a Duplicate Declaration error}} ```