diff --git a/.gitignore b/.gitignore index c50a344..0a2636f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ bin/ pkg/ wasm-pack.log www/ +.cargo-ok diff --git a/README.md b/README.md index 32dd7cc..c27e2ad 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ rexie = "0.1" ### Example -To create a new database, you can use the [`Rexie::builder`] method: +To create a new database, you can use the `Rexie::builder` method: ```rust use rexie::*; @@ -46,7 +46,7 @@ async fn build_database() -> Result { } ``` -To add an employee, you can use the [`Store::add`] method after creating a [`Transaction`]: +To add an employee, you can use the `Store::add` method after creating a `Transaction`: ```rust use rexie::*; @@ -68,7 +68,7 @@ async fn add_employee(rexie: &Rexie, name: &str, email: &str) -> Result { } ``` -To get an employee, you can use the [`Store::get`] method after creating a [`Transaction`]: +To get an employee, you can use the `Store::get` method after creating a `Transaction`: ```rust use rexie::*;