We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
mailmap
1 parent 86c7fa1 commit 1bf3e88Copy full SHA for 1bf3e88
gix/src/config/tree/sections/mailmap.rs
@@ -5,9 +5,9 @@ use crate::config::{
5
6
impl Mailmap {
7
/// The `mailmap.blob` key
8
- pub const BLOB: keys::Any = keys::Any::new("blob", &Tree::MAILMAP);
+ pub const BLOB: keys::String = keys::String::new_string("blob", &Tree::MAILMAP);
9
/// The `mailmap.file` key
10
- pub const FILE: keys::Any = keys::Any::new("file", &Tree::MAILMAP);
+ pub const FILE: keys::Path = keys::Path::new_path("file", &Tree::MAILMAP);
11
}
12
13
impl Section for Mailmap {
0 commit comments