summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2012-02-08 00:09:06 +0100
committerVlad Ureche <vlad.ureche@gmail.com>2012-02-08 00:09:06 +0100
commit68e52813e9abff45e239ebbc48493d8ad4ccf1b7 (patch)
tree606586e84f47917af0e56e82d658bb9a8c2a15e2 /src
parent99844ebc107d7c22eef64f48695cda4329be7c3b (diff)
downloadscala-68e52813e9abff45e239ebbc48493d8ad4ccf1b7.tar.gz
scala-68e52813e9abff45e239ebbc48493d8ad4ccf1b7.tar.bz2
scala-68e52813e9abff45e239ebbc48493d8ad4ccf1b7.zip
Fixed misplaced @usecase annotation
That was preventing the compiler API scaladoc from building
Diffstat (limited to 'src')
-rwxr-xr-xsrc/compiler/scala/tools/nsc/util/DocStrings.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/util/DocStrings.scala b/src/compiler/scala/tools/nsc/util/DocStrings.scala
index 2c8b77be71..24c9926ad8 100755
--- a/src/compiler/scala/tools/nsc/util/DocStrings.scala
+++ b/src/compiler/scala/tools/nsc/util/DocStrings.scala
@@ -73,7 +73,7 @@ object DocStrings {
* characters which terminate the comment.
*
* Also take usecases into account - they need to expand until the next
- * @usecase or the end of the string, as they might include other sections
+ * usecase or the end of the string, as they might include other sections
* of their own
*/
def tagIndex(str: String, p: Int => Boolean = (idx => true)): List[(Int, Int)] =
@@ -86,7 +86,7 @@ object DocStrings {
}
/**
- * Merge sections following an @usecase into the usecase comment, so they
+ * Merge sections following an usecase into the usecase comment, so they
* can override the parent symbol's sections
*/
def mergeUsecaseSections(str: String, idxs: List[Int]): List[Int] = {