1
1
mirror of https://github.com/anoma/juvix.git synced 2024-10-03 19:47:59 +03:00

Fix baseUrl for juvix docs in Doctor command (#2122)

Currently generated links for fixing errors in the `juvix doctor`
command are broken.
Fixing that by updating the base Url link.

Also fixed the link to the installation of juvix in the contributing
guide.
This commit is contained in:
Veronika Romashkina 2023-05-24 11:14:30 +01:00 committed by GitHub
parent b4e7dbc7fd
commit acb8b0c773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ All pull requests will be reviewed by at least one member of the development tea
Thank you for contributing to Juvix!
[installation]: https://docs.juvix.org/howto/installing.html
[installation]: https://docs.juvix.org/dev/howto/installing/
[juvix-codespace]: https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=102404734&machine=standardLinux32gb&location=WestEurope
[stack]: https://docs.haskellstack.org/en/stable/README/
[pre-commit]: https://pre-commit.com/

View File

@ -56,7 +56,7 @@ documentedMessage w = uncurry DocumentedMessage (first (baseUrl <>) warningInfo)
NoWasmer -> ("could-not-find-the-wasmer-command", "Could not find the wasmer command")
baseUrl :: Text
baseUrl = "https://docs.juvix.org/tooling/doctor.html#"
baseUrl = "https://docs.juvix.org/dev/reference/tooling/doctor/#"
heading :: (Member Log r) => Text -> Sem r ()
heading = log . ("> " <>)