summaryrefslogtreecommitdiff
path: root/src/library/scala/xml/Node.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/xml/Node.scala')
-rwxr-xr-xsrc/library/scala/xml/Node.scala6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/library/scala/xml/Node.scala b/src/library/scala/xml/Node.scala
index 02e34e1bdc..7fca644730 100755
--- a/src/library/scala/xml/Node.scala
+++ b/src/library/scala/xml/Node.scala
@@ -155,8 +155,7 @@ abstract class Node extends NodeSeq {
/**
* String representation of this node
*
- * @param stripComment if true, strips comment nodes from result
- * @return ...
+ * @param stripComments if true, strips comment nodes from result
*/
def buildString(stripComments: Boolean): String =
Utility.serialize(this, stripComments = stripComments).toString
@@ -170,9 +169,6 @@ abstract class Node extends NodeSeq {
/**
* Appends qualified name of this node to `StringBuilder`.
- *
- * @param sb ...
- * @return ...
*/
def nameToString(sb: StringBuilder): StringBuilder = {
if (null != prefix) {