Remove trailing semicolon in REPEAT function example (#116218)
Remove trailing semicolon in REPEAT function example (Closes #116156 )
This commit is contained in:
parent
ddd606d360
commit
0914679225
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
],
|
||||
"examples" : [
|
||||
"ROW a = \"Hello!\"\n| EVAL triple_a = REPEAT(a, 3);"
|
||||
"ROW a = \"Hello!\"\n| EVAL triple_a = REPEAT(a, 3)"
|
||||
],
|
||||
"preview" : false,
|
||||
"snapshot_only" : false
|
||||
|
|
|
@ -7,5 +7,5 @@ Returns a string constructed by concatenating `string` with itself the specified
|
|||
|
||||
```
|
||||
ROW a = "Hello!"
|
||||
| EVAL triple_a = REPEAT(a, 3);
|
||||
| EVAL triple_a = REPEAT(a, 3)
|
||||
```
|
||||
|
|
|
@ -1655,8 +1655,9 @@ repeat
|
|||
required_capability: repeat
|
||||
// tag::repeat[]
|
||||
ROW a = "Hello!"
|
||||
| EVAL triple_a = REPEAT(a, 3);
|
||||
| EVAL triple_a = REPEAT(a, 3)
|
||||
// end::repeat[]
|
||||
;
|
||||
|
||||
// tag::repeat-result[]
|
||||
a:keyword | triple_a:keyword
|
||||
|
|
Loading…
Reference in New Issue