Skip to content

Commit

Permalink
chore: fix more typos (#671)
Browse files Browse the repository at this point in the history
Signed-off-by: MrCroxx <[email protected]>
  • Loading branch information
MrCroxx authored Aug 28, 2024
1 parent 48d5bca commit 1f9ea31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- Expose `Weighter` trait.
- Support `serde` for more configurations.
- Update `foyer-bench` with more fine-grained configurations.
- Fix panices with `None` recover mode.
- Fix panics with `None` recover mode.

</details>

Expand Down Expand Up @@ -130,7 +130,7 @@

### Changes

- Hybird cache `fetch()` use the dedicated runtime by default if enabled.
- Hybrid cache `fetch()` use the dedicated runtime by default if enabled.
- Separate `fetch()` and `fetch_with_runtime()` interface for in-memory cache.

</details>
Expand Down Expand Up @@ -254,7 +254,7 @@

### Changes

- feat: Impl `Debug` for `HybirdCache`.
- feat: Impl `Debug` for `HybridCache`.
- feat: Impl `serde`, `Default` for eviction configs.
- refactor: Add internal trait `EvictionConfig` to bound eviction algorithm configs.

Expand Down Expand Up @@ -298,7 +298,7 @@

### Changes

- Fix `FsDeviceBuilder` on a non-exist directory without cacpacity given.
- Fix `FsDeviceBuilder` on a non-exist directory without capacity given.

</details>

Expand Down Expand Up @@ -663,7 +663,7 @@ The implementation of **foyer** is separated into multiple crates. But importing
Brief description about the subcrates:

- foyer-common: Provide basic data structures and algorithms.
- foyer-intrusive: Provide intrusive containers for implementing eviction lists and collections. Intrisive data structures provide the ability to implement low-cost multi-index data structures, which will be used for the memory cache in future.
- foyer-intrusive: Provide intrusive containers for implementing eviction lists and collections. Intrusive data structures provide the ability to implement low-cost multi-index data structures, which will be used for the memory cache in future.
- foyer-storage: Provide the file cache storage engine and wrappers to simplify the code.
- foyer-storage-bench: Runnable benchmark tool for the file cache storage engine.
- foyer-workspace-hack: Generated by [hakari](https://crates.io/crates/hakari) to prevent building each crate from triggering building from scratch.
Expand All @@ -679,6 +679,6 @@ Brief description about the subcrates:

<details>

Initial version with just bacis interfaces.
Initial version with just basic interfaces.

</details>
2 changes: 1 addition & 1 deletion foyer/src/hybrid/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ where
}
}

/// Hybird cache builder modify the disk cache configurations.
/// Hybrid cache builder modify the disk cache configurations.
pub struct HybridCacheBuilderPhaseStorage<K, V, S>
where
K: StorageKey,
Expand Down

0 comments on commit 1f9ea31

Please sign in to comment.