aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-06 21:46:04 +0100
committerGitHub <noreply@github.com>2016-11-06 21:46:04 +0100
commitbffefe96f1c3c550e42d745af879755d1f99bc37 (patch)
tree943f1ee4f740fdf62d52d000867ed7616b4ec714 /src/dotty/tools/dotc/reporting
parentf95681c0f9c9a93625ecb4abf85a0656569ddafe (diff)
downloaddotty-bffefe96f1c3c550e42d745af879755d1f99bc37.tar.gz
dotty-bffefe96f1c3c550e42d745af879755d1f99bc37.tar.bz2
dotty-bffefe96f1c3c550e42d745af879755d1f99bc37.zip
Fix typo in `IllegalLiteral` message
Diffstat (limited to 'src/dotty/tools/dotc/reporting')
-rw-r--r--src/dotty/tools/dotc/reporting/diagnostic/messages.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
index 619cc40f2..65fafd092 100644
--- a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
+++ b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
@@ -759,7 +759,7 @@ object messages {
val kind = "Syntax"
val msg = "illegal literal"
val explanation =
- hl"""|Available literals can be divided into the several groups:
+ hl"""|Available literals can be divided into several groups:
| - Integer literals: 0, 21, 0xFFFFFFFF, -42L
| - Floating Point Literals: 0.0, 1e30f, 3.14159f, 1.0e-100, .1
| - Boolean Literals: true, false