Files
toml11/toml
ToruNiina d11e42ca7e fix: explicitly say the table is top-level
The top-level table has its region at the first character of the file.
That means that, in the case when a key is not found in the top-level
table, the error message points to the first character. If the file has
its first table at the first line, the error message would be like this.
```console
[error] key "a" not found
 --> example.toml
   |
 1 | [table]
   | ^------ in this table
```
It actually points to the top-level table at the first character,
not `[table]`. But it is too confusing. To avoid the confusion, the
error message should explicitly say "key not found in the top-level
table".
2020-02-29 22:56:29 +09:00
..
2020-02-11 06:30:18 -06:00
2019-03-16 14:27:05 +09:00
2019-03-16 14:27:05 +09:00
2020-02-29 22:54:50 +09:00
2019-06-22 17:35:40 +09:00