summaryrefslogtreecommitdiffstats
path: root/gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm
diff options
context:
space:
mode:
Diffstat (limited to 'gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm')
-rw-r--r--gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm b/gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm
index 9af98a6673..e64677dcca 100644
--- a/gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm
+++ b/gerrit-server/src/main/resources/com/google/gerrit/server/mail/Comment.vm
@@ -30,9 +30,9 @@
## --------------
## The Comment.vm template will determine the contents of the email related to
## a user submitting comments on changes. It is a ChangeEmail: see
-## ChangeSubject.vm and ChangeFooter.vm.
+## ChangeSubject.vm, ChangeFooter.vm and CommentFooter.vm.
##
-#if ($email.coverLetter || $email.inlineComments)
+#if ($email.coverLetter || $email.hasInlineComments())
$fromName has posted comments on this change.
Change subject: $change.subject
@@ -45,9 +45,9 @@ $email.coverLetter
#end
##
## It is possible to increase the span of the quoted lines by using the line
-## count parameter when calling $email.inlineComments as a function.
+## count parameter when calling $email.getInlineComments as a function.
##
-## Example: #if($email.inlineComments)$email.getInlineComments(5)#end
+## Example: #if($email.hasInlineComments())$email.getInlineComments(5)#end
##
-#if($email.inlineComments)$email.inlineComments#end
+#if($email.hasInlineComments())$email.inlineComments#end
#end