From c0a8215745849cef7d75d8b6e4ead9ea2528e89e Mon Sep 17 00:00:00 2001 From: Seiko HAYASHI Date: Mon, 20 May 2024 21:51:50 +0900 Subject: [PATCH] fix: typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb040ea3..406291a3 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ The name is being composed by `$Floor` and the database class name. The string passed to `databaseBuilder()` will be the database file name. For initializing the database, call `build()` and make sure to `await` the result. -In order to retrieve the `PersonDao` instance, invoking the `persoDao` getter on the database instance is enough. +In order to retrieve the `PersonDao` instance, invoking the `personDao` getter on the database instance is enough. Its functions can be used as shown in the following snippet. ```dart