Correct link to guide.

This commit is contained in:
Robin Heggelund Hansen 2022-05-07 12:56:31 +02:00
parent d31f19fb81
commit d41c6993b5
4 changed files with 8 additions and 8 deletions

View File

@ -1956,7 +1956,7 @@ makeToReport make =
D.indent 4 $ D.green "gren make src/This.gren src/That.gren"
],
D.reflow $
"I recommend reading through https://guide.gren-lang.org for guidance on what to\
"I recommend reading through https://gren-lang.org/learn for guidance on what to\
\ actually put in those files!"
]
MakePkgNeedsExposing ->
@ -2079,7 +2079,7 @@ makeToReport make =
],
D.reflow $
"From there I can create an HTML file that says \"Hello!\" on screen. I recommend\
\ looking through https://guide.gren-lang.org for more guidance on how to fill in\
\ looking through https://gren-lang.org/learn for more guidance on how to fill in\
\ the `main` value."
]
MakeNonMainFilesIntoJavaScript m ms ->
@ -2179,7 +2179,7 @@ toProjectProblemReport projectProblem =
D.reflow $ "Is there a typo?",
D.toSimpleNote $
"If you are just getting started, try working through the examples in the\
\ official guide https://guide.gren-lang.org to get an idea of the kinds of things\
\ official guide https://gren-lang.org/learn to get an idea of the kinds of things\
\ that typically go in a src/Main.gren file."
]
BP_WithBadExtension path ->
@ -2471,7 +2471,7 @@ formatToReport problem =
D.reflow $ "Is there a typo?",
D.toSimpleNote $
"If you are just getting started, try working through the examples in the\
\ official guide https://guide.gren-lang.org to get an idea of the kinds of things\
\ official guide https://gren-lang.org/learn to get an idea of the kinds of things\
\ that typically go in a src/Main.gren file."
]
FormatStdinWithFiles ->

View File

@ -956,7 +956,7 @@ toWeirdEndReport source row col =
\ choices. (E.g. side-effects, for loops, etc.) Gren manages effects with commands\
\ and subscriptions instead, so there is no special syntax for \"statements\" and\
\ therefore no need to use semicolons to separate them. I think this will make\
\ more sense as you work through <https://guide.gren-lang.org> though!"
\ more sense as you work through <https://gren-lang.org/learn> though!"
]
)
Just ',' ->

View File

@ -14,7 +14,7 @@ You should generally not edit it by hand. It is better to add new dependencies w
## What goes in `src/`?
This is where all of your Gren files live. It is best to start with a file called `src/Main.gren`. As you work through [the official guide](https://guide.gren-lang.org/), you can put the code examples in that `src/Main.gren` file.
This is where all of your Gren files live. It is best to start with a file called `src/Main.gren`. As you work through [the official guide](https://gren-lang.org/learn), you can put the code examples in that `src/Main.gren` file.
## How do I compile it?

View File

@ -53,7 +53,7 @@ intro =
],
"",
P.black "-------------------------------------------------------------------------------",
P.black "I highly recommend working through <https://guide.gren-lang.org> to get started.",
P.black "I highly recommend working through <https://gren-lang.org/learn> to get started.",
P.black "It teaches many important concepts, including how to use `gren` in the terminal.",
P.black "-------------------------------------------------------------------------------"
]
@ -97,7 +97,7 @@ repl =
example =
reflow
"Start working through <https://guide.gren-lang.org> to learn how to use this!\
"Start working through <https://gren-lang.org/learn> to learn how to use this!\
\ It has a whole chapter that uses the REPL for everything, so that is probably\
\ the quickest way to get started."