]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/IfStatement.java
upd: Normalize tailing dots in "output.template"-Documentation
[gigi.git] / src / org / cacert / gigi / output / template / IfStatement.java
index f2248bcc72fd3a3987b87cc22f7192d5c2883bdc..1b49f3b28f0ae1dad5dfe8526cbd5e347cd9b9e6 100644 (file)
@@ -22,7 +22,7 @@ public final class IfStatement implements Translatable {
      * Creates a new {@link IfStatement} with an empty else-part.
      * 
      * @param variable
-     *            the variable to check
+     *            the variable to check.
      * @param body
      *            the body to emit conditionally.
      */
@@ -36,11 +36,11 @@ public final class IfStatement implements Translatable {
      * Creates a new {@link IfStatement} with an else-block.
      * 
      * @param variable
-     *            the variable to check
+     *            the variable to check.
      * @param iftrue
      *            the block to emit if the check succeeds.
      * @param iffalse
-     *            the block to emit if the check fails
+     *            the block to emit if the check fails.
      */
     public IfStatement(String variable, TemplateBlock iftrue, TemplateBlock iffalse) {
         this.variable = variable;