From b05103ba2611c197ceaf4fa19ed3dbfb14756455 Mon Sep 17 00:00:00 2001 From: Yilin Wei Date: Fri, 29 May 2020 17:48:28 +0100 Subject: [PATCH] Fix typo in documentation --- library/src/scala/quoted/ScopeException.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/scala/quoted/ScopeException.scala b/library/src/scala/quoted/ScopeException.scala index 8547020c8865..b6ecdc8feca3 100644 --- a/library/src/scala/quoted/ScopeException.scala +++ b/library/src/scala/quoted/ScopeException.scala @@ -1,4 +1,4 @@ package scala.quoted -/** Excetion thrown when an Expr or Type is used ouside of the scope where it is valid */ +/** Exception thrown when an Expr or Type is used ouside of the scope where it is valid */ class ScopeException(msg: String) extends Exception(msg)