summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/plugins
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-11-13 02:59:33 -0800
committerPaul Phillips <paulp@improving.org>2012-11-19 11:55:07 -0800
commitf89394ee3b3f95d982382d6ee2c2b74af0c02113 (patch)
tree4a0623681753cf516778f1d0683a9df536907542 /src/compiler/scala/tools/nsc/plugins
parentd5e3f85946af966111f88af90a666a709df0ba6f (diff)
downloadscala-f89394ee3b3f95d982382d6ee2c2b74af0c02113.tar.gz
scala-f89394ee3b3f95d982382d6ee2c2b74af0c02113.tar.bz2
scala-f89394ee3b3f95d982382d6ee2c2b74af0c02113.zip
Removing ancient comments and pointless comments.
Translating <code></code> into backticks. Removed the "@param tree ..." blocks which have been taunting me for half a decade now. Removed commented-out blocks of code which had been sitting there for two years or more.
Diffstat (limited to 'src/compiler/scala/tools/nsc/plugins')
-rw-r--r--src/compiler/scala/tools/nsc/plugins/Plugin.scala2
-rw-r--r--src/compiler/scala/tools/nsc/plugins/PluginDescription.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/plugins/Plugin.scala b/src/compiler/scala/tools/nsc/plugins/Plugin.scala
index 6c64ea907f..093f8285e1 100644
--- a/src/compiler/scala/tools/nsc/plugins/Plugin.scala
+++ b/src/compiler/scala/tools/nsc/plugins/Plugin.scala
@@ -71,7 +71,7 @@ object Plugin {
}
/** Try to load a plugin description from the specified
- * file, returning <code>None</code> if it does not work.
+ * file, returning `None` if it does not work.
*/
private def loadDescription(jarfile: Path): Option[PluginDescription] =
// XXX Return to this once we have some ARM support
diff --git a/src/compiler/scala/tools/nsc/plugins/PluginDescription.scala b/src/compiler/scala/tools/nsc/plugins/PluginDescription.scala
index 9ecc098687..f77123ba11 100644
--- a/src/compiler/scala/tools/nsc/plugins/PluginDescription.scala
+++ b/src/compiler/scala/tools/nsc/plugins/PluginDescription.scala
@@ -26,7 +26,7 @@ abstract class PluginDescription {
val classname: String
/** An XML representation of this description. It can be
- * read back using <code>PluginDescription.fromXML</code>.
+ * read back using `PluginDescription.fromXML`.
* It should be stored inside the jar archive file.
*/
def toXML: Node = {