From 38e4a34ea22ec8df8c2a467a6be878a78579e499 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sun, 16 Jun 2024 19:43:40 +0900 Subject: [PATCH] doc: update README a bit --- README.md | 6 +++--- README_ja.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa0326c..7add89c 100644 --- a/README.md +++ b/README.md @@ -330,10 +330,10 @@ std::cout << toml::format(input) << std::endl; For details on possible formatting specifications, please refer to the documentation. -### compilcated configurations +### configuring types -The examples directory provides complex usage examples, such as using -arbitrary-precision integers, normalizing Unicode, and integrating with external reflection libraries. +The examples directory provides usage examples, such as using +arbitrary-precision integers, normalizing Unicode, and integrating with an external reflection library. Please refer to these examples for implementation guidance in such scenarios. diff --git a/README_ja.md b/README_ja.md index 99880f1..966ae32 100644 --- a/README_ja.md +++ b/README_ja.md @@ -329,7 +329,7 @@ std::cout << toml::format(input) << std::endl; どのような指定が可能かなどの詳細はドキュメントを参照してください。 -### compilcated configurations +### configuring types `examples`ディレクトリには、多倍長整数を使用する場合やユニコードを正規化する場合、 外部のリフレクションライブラリと連携する場合などの複雑な使用例を用意しています。