src/Pure/General/toml.scala
changeset 78332 3b4bbc5b7c46
parent 78327 a235fc426523
child 78609 67492b2a3a62
--- a/src/Pure/General/toml.scala	Thu Jul 13 14:02:36 2023 +0200
+++ b/src/Pure/General/toml.scala	Fri Jul 14 09:32:44 2023 +0200
@@ -408,7 +408,7 @@
             (seen.inlines + rest, seen.tables ++ implicitly_seen)
           case _: Parsers.Table =>
             if (seen.tables.contains(rest))
-              error("Attempting to define a table twice at" + Format.keys(ks))
+              error("Attempting to define a table twice at " + Format.keys(ks))
             (seen.inlines, seen.tables + rest)
           case _: Parsers.Array_Of_Tables => (Set.empty, Set.empty)
         }