Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Mar 8, 2024
1 parent c33725d commit 7139770
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/Reference/Query/QueryDsl/template.md
Expand Up @@ -371,13 +371,13 @@ The special variable returns a boolean value indicating whether the next iterati
The name of the special variable is a concatenation of the identifier and `_has_next`.
In the above example, the name of the special variable is `name_has_next`.

### end directive {#sql-template-end-directive}
### end directives {#sql-template-end-directive}

To end conditional branching and loop processing, use end directives.

End directives are SQL comments expressed as `/*%end*/`.

### parser-level comment directives {#sql-template-parser-level-comment-directive}
### Parser-level comment directives {#sql-template-parser-level-comment-directive}

Using a parser-level comment directive allows you to include comments in an SQL template
that will be removed after the template is parsed.
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/Reference/Query/QueryDsl/template.md
Expand Up @@ -346,7 +346,7 @@ select
name
from
employee
where /*%! This comment will be removed */
where /*%! このコメントは削除されます */
employee_id = /* employeeId */99
```

Expand Down

0 comments on commit 7139770

Please sign in to comment.