doc(indexeddb): fix typos in documentation

Signed-off-by: Michael Goldenberg <m@mgoldenberg.net>
This commit is contained in:
Michael Goldenberg
2025-10-20 23:02:55 -04:00
committed by Damir Jelić
parent 64a0f62631
commit 18fe2b20e6
2 changed files with 2 additions and 2 deletions
@@ -216,7 +216,7 @@ impl<'a> IndexeddbMediaStoreTransaction<'a> {
}
}
/// Delete [`MediaMetadat`] and [`MediaContent`] that matches the given
/// Delete [`MediaMetadata`] and [`MediaContent`] that matches the given
/// [`MediaRequestParameters`] from IndexedDB
pub async fn delete_media_by_id(
&self,
@@ -55,7 +55,7 @@ impl<T> From<serde_wasm_bindgen::Error> for IndexedTypeSerializerError<T> {
pub struct IndexedTypeSerializationOutput<T: Indexed> {
/// The intermediary value created in the process of serialization
pub indexed: T::IndexedType,
/// The fully-serialzed value
/// The fully-serialized value
pub value: JsValue,
}