summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI_5054_q7.scala
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@epfl.ch>2011-12-16 21:18:38 +0100
committerPaul Phillips <paulp@improving.org>2011-12-16 14:18:03 -0800
commit98108febce145b9f2842937d3ac4a9c1d24f6108 (patch)
tree31921e3138525876412539bf5dd47a4d3751c608 /test/scaladoc/resources/SI_5054_q7.scala
parent2f5f7c16870ae1fa97bbca1642659ab8c104b442 (diff)
downloadscala-98108febce145b9f2842937d3ac4a9c1d24f6108.tar.gz
scala-98108febce145b9f2842937d3ac4a9c1d24f6108.tar.bz2
scala-98108febce145b9f2842937d3ac4a9c1d24f6108.zip
Fixed "Definition Classes" in bug #5287
Diffstat (limited to 'test/scaladoc/resources/SI_5054_q7.scala')
-rw-r--r--test/scaladoc/resources/SI_5054_q7.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/scaladoc/resources/SI_5054_q7.scala b/test/scaladoc/resources/SI_5054_q7.scala
index 26d4b5fcf4..1bd120e30c 100644
--- a/test/scaladoc/resources/SI_5054_q7.scala
+++ b/test/scaladoc/resources/SI_5054_q7.scala
@@ -6,17 +6,17 @@ trait SI_5054_q7 {
*
* @param lost a lost parameter
* @return some integer
- * @usecase def test(): Int
+ * @usecase def test1(): Int
*
* This takes the implicit value in scope.
*
- * Example: `test()`
+ * Example: `test1()`
*
- * @usecase def test(explicit: Int): Int
+ * @usecase def test2(explicit: Int): Int
*
* This takes the explicit value passed.
*
- * Example: `test(3)`
+ * Example: `test2(3)`
*/
def test(implicit lost: Int): Int
}