@@ -46,7 +46,7 @@ are not permitted in comments.
4646Values
4747------
4848
49- A MAML value is an object, array, string, multiline string, integer, float,
49+ A MAML value is an object, array, string, raw string, integer, float,
5050boolean, or null.
5151
5252
@@ -146,10 +146,10 @@ MAML should produce an error. All strings must contain only valid UTF-8
146146characters.
147147
148148
149- Multiline String
149+ Raw String
150150----------------
151151
152- ** Multiline Strings ** are surrounded by ` """ ` three quotes on each
152+ ** Raw strings ** are surrounded by ` """ ` three quotes on each
153153side and allow newlines. There is no escaping. A newline immediately following
154154the opening delimiter is ignored. All other content between the delimiters is
155155interpreted as-is without modification.
@@ -205,7 +205,7 @@ are interpreted as-is without modification.
205205"""
206206```
207207
208- You can write one or two quotes anywhere within a multiline string,
208+ You can write one or two quotes anywhere within a raw string,
209209but sequences of three or more quotes are not permitted.
210210
211211``` maml
@@ -215,10 +215,10 @@ But many if spaces: "1", "2", "3".
215215"""
216216```
217217
218- Multiline string may also be written in a single line.
218+ Raw string may also be written in a single line.
219219
220220``` maml
221- """A multiline string and with "quotas"."""
221+ """A raw string and with "quotas"."""
222222```
223223
224224The following example evaluates to the empty string ` "" ` :
@@ -237,10 +237,10 @@ additional blank line between the delimiters:
237237"""
238238```
239239
240- The single-line multiline string cannot represent an empty string. To write an
240+ The single-line raw string cannot represent an empty string. To write an
241241empty string on one line, use a normal string ` "" ` .
242242
243- All multiline strings must contain only valid UTF-8 characters.
243+ All raw strings must contain only valid UTF-8 characters.
244244
245245
246246Integer
0 commit comments