spelling: exception

This commit is contained in:
Josh Soref 2017-01-20 08:13:55 +00:00
parent 524579d87a
commit 899cd85d06
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import org.scalatest.FunSuite
class SBT543 extends FunSuite {
class MyCustomException(message: String) extends RuntimeException(message)
test("throws a custom excpetion") {
test("throws a custom exception") {
throw new MyCustomException("this is a custom exception")
}
}