summaryrefslogtreecommitdiff
path: root/sources/ch/epfl/lamp
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-10-14 09:09:23 +0000
committermichelou <michelou@epfl.ch>2003-10-14 09:09:23 +0000
commitf7d10e24428e2d611ba0bd940b4a45b72e94e2a6 (patch)
treedbd10f633914d074b13aba4eb5cb265b4fc8ba55 /sources/ch/epfl/lamp
parentfbfe5ca0ba733dec3e18c0431fb2197a5815f0fb (diff)
downloadscala-f7d10e24428e2d611ba0bd940b4a45b72e94e2a6.tar.gz
scala-f7d10e24428e2d611ba0bd940b4a45b72e94e2a6.tar.bz2
scala-f7d10e24428e2d611ba0bd940b4a45b72e94e2a6.zip
- corrected printlnTag
Diffstat (limited to 'sources/ch/epfl/lamp')
-rw-r--r--sources/ch/epfl/lamp/util/HTMLPrinter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/ch/epfl/lamp/util/HTMLPrinter.java b/sources/ch/epfl/lamp/util/HTMLPrinter.java
index 8904b97b1b..bc1afcd441 100644
--- a/sources/ch/epfl/lamp/util/HTMLPrinter.java
+++ b/sources/ch/epfl/lamp/util/HTMLPrinter.java
@@ -304,7 +304,7 @@ public class HTMLPrinter {
* @param text
*/
public HTMLPrinter printlnTag(String label, String text) {
- printOTag(label);
+ printlnOTag(label);
print(text);
return printlnCTag(label);
}