@@ -44,7 +44,7 @@ These are divided into the following categories:
4444 ```
4545
4646 ```
47- let $var = {( no message body) }
47+ let $var = {| no message body| }
4848 ```
4949
5050- ** Data Model errors** occur when a message is invalid due to
@@ -112,11 +112,11 @@ These are divided into the following categories:
112112 does not provide for the function `:func` to be successfully resolved:
113113
114114 ```
115- {The value is {( horse) :func}.}
115+ {The value is {| horse| :func}.}
116116 ```
117117
118118 ```
119- match {( horse) :func}
119+ match {| horse| :func}
120120 when 1 {The value is one.}
121121 when * {The value is not one.}
122122 ```
@@ -130,13 +130,13 @@ These are divided into the following categories:
130130 uses a `:plural` selector function which requires its input to be numeric:
131131
132132 ```
133- match {( horse) :plural}
133+ match {| horse| :plural}
134134 when 1 {The value is one.}
135135 when * {The value is not one.}
136136 ```
137137
138138 ```
139- let $sel = {( horse) :plural}
139+ let $sel = {| horse| :plural}
140140 match {$sel}
141141 when 1 {The value is one.}
142142 when * {The value is not one.}
@@ -157,7 +157,7 @@ These are divided into the following categories:
157157 an option `field` to be provided with a string value,
158158
159159 ```
160- {Hello, {( horse) : get field=name}!}
160+ {Hello, {| horse| : get field=name}!}
161161 ```
162162
163163 ```
@@ -211,11 +211,11 @@ always starts with U+007B LEFT CURLY BRACKET `{`
211211and ends with U+007D RIGHT CURLY BRACKET `}`.
212212Between the brackets, the following contents are used:
213213
214- - Expression with Literal Operand: U+0028 LEFT PARENTHESIS `( `
214+ - Expression with Literal Operand: U+007C VERTICAL LINE `| `
215215 followed by the value of the Literal,
216- and then by U+0029 RIGHT PARENTHESIS `) `
216+ and then by U+007C VERTICAL LINE `| `
217217
218- Examples: `{( horse) }`, `{(42) }`
218+ Examples: `{| horse| }`, `{|42| }`
219219
220220- Expression with Variable Operand: U+0024 DOLLAR SIGN `$`
221221 followed by the Variable Name of the Operand
@@ -249,17 +249,17 @@ For example, attempting to format either of the following messages within a cont
249249does not provide for the function `:func` to be successfully resolved:
250250
251251```
252- let $var = {( horse) : func }
252+ let $var = {| horse| : func }
253253{The value is {$var}.}
254254```
255255
256256```
257- let $var = {( horse) }
257+ let $var = {| horse| }
258258{The value is {$var : func }.}
259259```
260260
261261would result in both cases with this formatted string representation:
262262
263263```
264- The value is {( horse) }.
264+ The value is {| horse| }.
265265```
0 commit comments