diff --git a/src/content/docs/en/migration.mdx b/src/content/docs/en/migration.mdx index e180533..65caf6d 100644 --- a/src/content/docs/en/migration.mdx +++ b/src/content/docs/en/migration.mdx @@ -46,7 +46,7 @@ Quick.db now uses async and await for all methods. ```js // Quick.db before -db.add("mykey", 10); +await db.add("mykey", 10); // Now await db.add("mykey", 10);