summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcremet <cremet@epfl.ch>2004-05-26 17:03:04 +0000
committercremet <cremet@epfl.ch>2004-05-26 17:03:04 +0000
commit02a6574294afe8355be2654e96ec9ec5f540306c (patch)
tree380c7c0bdff0246205423321ea4ffb3b2d70771f
parent77609a89df194e1f6151bc73f7e37688f39c4d00 (diff)
downloadscala-02a6574294afe8355be2654e96ec9ec5f540306c.tar.gz
scala-02a6574294afe8355be2654e96ec9ec5f540306c.tar.bz2
scala-02a6574294afe8355be2654e96ec9ec5f540306c.zip
- not valid comments.
-rw-r--r--sources/scala/mobile/Code.scala2
-rw-r--r--sources/scala/mobile/Location.scala2
-rw-r--r--sources/scala/xml/CharData.scala4
-rw-r--r--sources/scala/xml/ProcInstr.scala2
4 files changed, 5 insertions, 5 deletions
diff --git a/sources/scala/mobile/Code.scala b/sources/scala/mobile/Code.scala
index 60a00d95e7..18cba743eb 100644
--- a/sources/scala/mobile/Code.scala
+++ b/sources/scala/mobile/Code.scala
@@ -26,7 +26,7 @@ import java.lang.reflect.Modifier;
* obj[Array[Int], Unit]("sort")(ar);
* obj[Array[Int], Unit]("println")(ar);</pre>
*
- * @see class <a href="Location-class.html">Location</a>
+ * @see <a href="Location-class.html">Location</a>
*
* @author Stephane Micheloud
* @version 1.0, 04/05/2004
diff --git a/sources/scala/mobile/Location.scala b/sources/scala/mobile/Location.scala
index 4db7af5c82..c6f7d57648 100644
--- a/sources/scala/mobile/Location.scala
+++ b/sources/scala/mobile/Location.scala
@@ -25,7 +25,7 @@ import scala.collection.mutable._;
* <b>val</b> url = <b>new</b> URL("http://scala.epfl.ch/classes/examples.jar");
* <b>val</b> obj = <b>new</b> Location(url) create "examples.sort";</pre>
*
- * @see class <a href="Code-class.html">Code</a>
+ * @see <a href="Code-class.html">Code</a>
*
* @author Stephane Micheloud
* @version 1.0, 04/05/2004
diff --git a/sources/scala/xml/CharData.scala b/sources/scala/xml/CharData.scala
index 3c78cac271..512dbfa9ca 100644
--- a/sources/scala/xml/CharData.scala
+++ b/sources/scala/xml/CharData.scala
@@ -13,7 +13,7 @@ import scala.collection.immutable ;
/** an XML node for unparsed character data (CDATA).
* @author Burak Emir
- * @param text text contained in this node, may not contain "]]>"
+ * @param text text contained in this node, may not contain &quot;]]&gt;&quot;
**/
case class CharData( text:String ) extends Node {
@@ -31,7 +31,7 @@ case class CharData( text:String ) extends Node {
/** always empty */
final def child = Nil;
- /** returns "<![CDATA["+text+"]]>" */
+ /** returns &quot;&lt;![CDATA[&quot;+text+&quot;]]&gt;&quot; */
final override def toString() = "<![CDATA["+text+"]]>";
}
diff --git a/sources/scala/xml/ProcInstr.scala b/sources/scala/xml/ProcInstr.scala
index 9b27e489fb..10c690ccb6 100644
--- a/sources/scala/xml/ProcInstr.scala
+++ b/sources/scala/xml/ProcInstr.scala
@@ -43,7 +43,7 @@ case class ProcInstr( target:String, text:Option[String] ) extends Node {
/** hashcode for this PI */
override def hashCode() = target.hashCode() * 7 + text.hashCode();
- /** returns "<?"+target+(" "+text)?+"?>" */
+ /** returns &quot;&lt;?&quot;+target+(&quot; &quot;+text)?+&quot;?&gt;&quot; */
final override def toString() = {
val sb = new StringBuffer("<?");
sb.append(target);