fix: readme

This commit is contained in:
Sakurai Ryota 2024-08-12 12:10:13 +09:00
parent d8c6f40442
commit 39561ef837

View File

@ -20,7 +20,7 @@ bool result = jsonDB.Add(new T());
IEnumerable<T> allItems = jsonDB.GetValues();
// DBから特定のアイテムを取得します。
IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true):
IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true);
// ファイルに書き込む
jsonDB.Commit();