Skip to content

Commit

Permalink
docs: fix typos discovered by codespell (#2534)
Browse files Browse the repository at this point in the history
## Description

<!-- A summary of what this pull request achieves and a rough list of
changes. -->

% `codespell
--ignore-words-list=ans,crate,inout,ratatui,ser,stayin,swarmin,worl`
* https://github.com/codespell-project/codespell

## Breaking Changes

<!-- Optional, if there are any breaking changes document them,
including how to migrate older code. -->

## Notes & open questions

<!-- Any notes, remarks or open questions you have to make about the PR.
-->

## Change checklist

- [x] Self-review.
- [ ] Documentation updates following the [style
guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text),
if relevant.
- [ ] Tests if relevant.
- [ ] All breaking changes documented.
  • Loading branch information
cclauss authored Jul 25, 2024
1 parent 9b53b1b commit b5b7072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ pub struct DefaultAuthor {
impl DefaultAuthor {
/// Load the default author from storage.
///
/// If the storage is empty creates a new author and perists it.
/// If the storage is empty creates a new author and persists it.
pub async fn load(storage: DefaultAuthorStorage, docs_store: &SyncHandle) -> Result<Self> {
let value = storage.load(docs_store).await?;
Ok(Self {
Expand Down

0 comments on commit b5b7072

Please sign in to comment.