Skip to content

Commit ad1e2ed

Browse files
authored
Merge pull request #2137 from tmm1/typo-fix
Fix typo
2 parents 677de22 + 8e451cf commit ad1e2ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ prodash-render-tui = ["prodash/render-tui", "prodash/render-tui-crossterm", "gix
109109
prodash-render-line = ["prodash/render-line", "prodash-render-line-crossterm", "gix/progress-tree"]
110110

111111
## Prints statistical information to inform about cache efficiency when those are dropped.
112-
## Use this as a way to understand if bigger caches actually produce greater yiedls.
112+
## Use this as a way to understand if bigger caches actually produce greater yields.
113113
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
114114

115115
## A way to enable most `gitoxide-core` tools found in `ein tools`, namely `organize` and `estimate hours`.

gix/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
//! to understand which cache levels exist and how to leverage them.
3838
//!
3939
//! When accessing an object, the first cache that's queried is a memory-capped LRU object cache, mapping their id to data and kind.
40-
//! It has to be specifically enabled a [`Repository`].
40+
//! It has to be specifically enabled on a [`Repository`].
4141
//! On miss, the object is looked up and if a pack is hit, there is a small fixed-size cache for delta-base objects.
4242
//!
4343
//! In scenarios where the same objects are accessed multiple times, the object cache can be useful and is to be configured specifically

0 commit comments

Comments
 (0)