fix docs
This commit is contained in:
parent
0080b61204
commit
4cc675c90a
1 changed files with 9 additions and 11 deletions
20
src/main.rs
20
src/main.rs
|
@ -220,25 +220,23 @@ fn order_jobs(jobs: HashMap<String, Job>, conf: Config) {
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns a hashmap mapping all job ids to what they depend on (recursively)
|
/// Returns a hashmap mapping all job ids to what jobs depend on them (recursively)
|
||||||
///
|
///
|
||||||
/// Example output using the example toml:
|
/// Example output using the example toml:
|
||||||
///
|
///
|
||||||
/// ```json
|
/// ```json
|
||||||
/// {
|
/// {
|
||||||
/// "packages.some-librewolf-dependency.compilation": [
|
/// "packages.some-librewolf-dependency.packaging.fedora": [
|
||||||
/// "packages.some-librewolf-dependency.compilation",
|
|
||||||
/// ],
|
|
||||||
/// "packages.librewolf.fedora": [
|
|
||||||
/// "some-librewolf-dependency",
|
|
||||||
/// "packages.librewolf.compilation",
|
/// "packages.librewolf.compilation",
|
||||||
|
/// "packages.librewolf.packaging.fedora",
|
||||||
|
/// ],
|
||||||
|
/// "packages.some-librewolf-dependency.compilation": [
|
||||||
|
/// "packages.librewolf.compilation",
|
||||||
|
/// "packages.librewolf.packaging.fedora",
|
||||||
|
/// "packages.some-librewolf-dependency.packaging.fedora",
|
||||||
/// ],
|
/// ],
|
||||||
/// "packages.librewolf.compilation": [
|
/// "packages.librewolf.compilation": [
|
||||||
/// "some-librewolf-dependency",
|
/// "packages.librewolf.packaging.fedora",
|
||||||
/// "packages.librewolf.compilation",
|
|
||||||
/// ],
|
|
||||||
/// "packages.some-librewolf-dependency.fedora": [
|
|
||||||
/// "packages.some-librewolf-dependency.compilation",
|
|
||||||
/// ],
|
/// ],
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue