summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-01-03 02:31:39 -0800
committerJason Zaugg <jzaugg@gmail.com>2014-01-03 02:31:39 -0800
commit718b26baa6113bef9ce3ebc7c439e099615db78d (patch)
tree91b1cb0bc479cf43a25febacb8740c72826126d2 /test/files/scalacheck/quasiquotes
parent5c9b070fcf64fa17870248b7f856c4e7520f865f (diff)
parentf417380637428d8a57c38d2305c9cf09fd7d6366 (diff)
downloadscala-718b26baa6113bef9ce3ebc7c439e099615db78d.tar.gz
scala-718b26baa6113bef9ce3ebc7c439e099615db78d.tar.bz2
scala-718b26baa6113bef9ce3ebc7c439e099615db78d.zip
Merge pull request #3254 from xeno-by/topic/typeCheck
typeCheck => typecheck
Diffstat (limited to 'test/files/scalacheck/quasiquotes')
-rw-r--r--test/files/scalacheck/quasiquotes/QuasiquoteProperties.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/scalacheck/quasiquotes/QuasiquoteProperties.scala b/test/files/scalacheck/quasiquotes/QuasiquoteProperties.scala
index 5411e664a2..e4ee5dfcae 100644
--- a/test/files/scalacheck/quasiquotes/QuasiquoteProperties.scala
+++ b/test/files/scalacheck/quasiquotes/QuasiquoteProperties.scala
@@ -81,7 +81,7 @@ trait Helpers {
val compile = toolbox.compile(_)
val eval = toolbox.eval(_)
- def typecheck(tree: Tree) = toolbox.typeCheck(tree)
+ def typecheck(tree: Tree) = toolbox.typecheck(tree)
def typecheckTyp(tree: Tree) = {
val q"type $_ = $res" = typecheck(q"type T = $tree")