Fix comment how config has to look
This commit is contained in:
parent
48950b6175
commit
bb8dad256c
1 changed files with 8 additions and 6 deletions
|
@ -11,18 +11,20 @@ use toml::Value;
|
||||||
/// [store]
|
/// [store]
|
||||||
/// pre-create-hook-aspects = [ "misc", "encryption", "version-control"]
|
/// pre-create-hook-aspects = [ "misc", "encryption", "version-control"]
|
||||||
///
|
///
|
||||||
/// [[aspects.misc]]
|
/// [store.aspects.misc]
|
||||||
/// parallel = true
|
/// parallel = true
|
||||||
/// [[aspects.encryption]]
|
///
|
||||||
/// parallel = false
|
/// [store.aspects.encryption]
|
||||||
/// [[aspects.version-control]]
|
|
||||||
/// parallel = false
|
/// parallel = false
|
||||||
///
|
///
|
||||||
/// [[hooks.gnupg]]
|
/// [store.aspects.version-control]
|
||||||
|
/// parallel = false
|
||||||
|
///
|
||||||
|
/// [store.hooks.gnupg]
|
||||||
/// aspect = "encryption"
|
/// aspect = "encryption"
|
||||||
/// key = "0x123456789"
|
/// key = "0x123456789"
|
||||||
///
|
///
|
||||||
/// [[hooks.git]]
|
/// [store.hooks.git]
|
||||||
/// aspect = "version-control"
|
/// aspect = "version-control"
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue