summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-07-06 08:42:59 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-07-06 08:42:59 +0100
commitd2199c53788bec16101ec2c1048cfe4a6331a49b (patch)
tree82b94e5fb41bbb40af62127dbda5e312ac5228a0 /test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala
parent8d119e61068811c6cf333dcfbbca0aed2f6fb4f8 (diff)
downloadscala-d2199c53788bec16101ec2c1048cfe4a6331a49b.tar.gz
scala-d2199c53788bec16101ec2c1048cfe4a6331a49b.tar.bz2
scala-d2199c53788bec16101ec2c1048cfe4a6331a49b.zip
Fix 25 typos (s)
Diffstat (limited to 'test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala')
-rw-r--r--test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala b/test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala
index fd810674f5..4ab8bb8531 100644
--- a/test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala
+++ b/test/files/scalacheck/quasiquotes/DefinitionConstructionProps.scala
@@ -346,7 +346,7 @@ trait MethodConstruction { self: QuasiquoteProperties =>
}
}
- property("can't unquote annotations with arguments specificed twice") = test {
+ property("can't unquote annotations with arguments specified twice") = test {
val a = q"new a(x)"
assertThrows[IllegalArgumentException] {
q"@$a(y) def foo"
@@ -370,7 +370,7 @@ trait PackageConstruction { self: QuasiquoteProperties =>
assertEqAst(q"package $name { }", "package foo.bar { }")
}
- property("splce name into package name") = test{
+ property("splice name into package name") = test{
val name = TermName("bippy")
assertEqAst(q"package $name { }", "package bippy { }")
}