From 6185dfee141f9b7be74b1948c6cfdddb6f10c032 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Tue, 23 Apr 2019 23:31:37 +0900 Subject: [PATCH] chore: fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88ebc32..e8ea0a6 100644 --- a/README.md +++ b/README.md @@ -618,7 +618,7 @@ add a comma after the first element (like `[1,]`). "[[table]]"_toml; // This is a table that has an array of tables inside. "[[1]]"_toml; // This literal is ambiguous. - // Currently, it becomes a table taht has array of table "1". + // Currently, it becomes a table that has array of table "1". "1 = [{}]"_toml; // This is a table that has an array of table named 1. "[[1,]]"_toml; // This is an array of arrays. "[[1],]"_toml; // ditto.