Fix doc on select example ()

This commit is contained in:
David Bottiau 2023-05-28 13:06:08 +02:00 committed by GitHub
parent 9cd25566ac
commit f6c909e1a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -657,9 +657,6 @@ where
///
/// // Select a specific record from a table
/// let person: Option<Person> = db.select(("person", "h5wxrf2ewk8xjxosxtyc")).await?;
///
/// // You can skip an unnecessary option if you know the record already exists
/// let person: Option<Person> = db.select(("person", "h5wxrf2ewk8xjxosxtyc")).await?;
/// #
/// # Ok(())
/// # }