Skip to content

Commit b31d6b7

Browse files
committed
Fix typos in config support info
- `core.looseCompression` - use canonical capitalization for key - `core.packedGitLimit` - work well on 64-bit, not 32-bit (#1530) - `core.sparseCheckoutCone` - fix misspelled `sparseCheckout` ref - `submodule.recurse` - fix minor spelling typo
1 parent 242fedc commit b31d6b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/plumbing/progress.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static GIT_CONFIG: &[Record] = &[
7676
},
7777
Record {
7878
config: "core.packedGitLimit",
79-
usage: NotApplicable("we target 32bit systems only and don't use a windowing mechanism")
79+
usage: NotApplicable("we target 64-bit systems only and don't use a windowing mechanism")
8080
},
8181
Record {
8282
config: "core.alternateRefsCommand",
@@ -91,7 +91,7 @@ static GIT_CONFIG: &[Record] = &[
9191
usage: Planned("Allow to remove similar hardcoded value - passing it through will be some effort")
9292
},
9393
Record {
94-
config: "core.loosecompression",
94+
config: "core.looseCompression",
9595
usage: Planned("")
9696
},
9797
Record {
@@ -100,7 +100,7 @@ static GIT_CONFIG: &[Record] = &[
100100
},
101101
Record {
102102
config: "core.sparseCheckoutCone",
103-
usage: Planned("this is a nice improvement over spareCheckout alone and should one day be available too")
103+
usage: Planned("this is a nice improvement over sparseCheckout alone and should one day be available too")
104104
},
105105
Record {
106106
config: "core.gitProxy",
@@ -156,7 +156,7 @@ static GIT_CONFIG: &[Record] = &[
156156
},
157157
Record {
158158
config: "submodule.recurse",
159-
usage: Planned("very relevant for doing the right thing during checkouts. Note that 'clone' isnt' affected by it, even though we could make it so for good measure.")
159+
usage: Planned("very relevant for doing the right thing during checkouts. Note that 'clone' isn't affected by it, even though we could make it so for good measure.")
160160
},
161161
Record {
162162
config: "submodule.propagateBranches",

0 commit comments

Comments
 (0)