forked from lix-project/lix
Fix rendering of fetchGit documentation
stripIndentation() doesn't support tabs, so the entire markdown ended up indented and thus rendered as a code block.
This commit is contained in:
parent
cdfa59daa1
commit
16cb9b9f04
|
@ -481,10 +481,10 @@ static RegisterPrimOp primop_fetchGit({
|
|||
builtins.fetchGit ./work-dir
|
||||
```
|
||||
|
||||
If the URL points to a local directory, and no `ref` or `rev` is
|
||||
given, `fetchGit` will use the current content of the checked-out
|
||||
files, even if they are not committed or added to Git's index. It will
|
||||
only consider files added to the Git repository, as listed by `git ls-files`.
|
||||
If the URL points to a local directory, and no `ref` or `rev` is
|
||||
given, `fetchGit` will use the current content of the checked-out
|
||||
files, even if they are not committed or added to Git's index. It will
|
||||
only consider files added to the Git repository, as listed by `git ls-files`.
|
||||
)",
|
||||
.fun = prim_fetchGit,
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue