Skip to content

Commit 0746183

Browse files
committed
Move from elm mentions to guida
1 parent 20b33d0 commit 0746183

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/Builder/Reporting/Exit.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2548,7 +2548,7 @@ toPackageProblemReport pkg vsn problem =
25482548
[ " Expected: " ++ expectedHash
25492549
, " Actual: " ++ actualHash
25502550
]
2551-
, D.reflow "This usually means that the package author moved the version tag, so report it to them and see if that is the issue. Folks on Guida discord can probably help as well."
2551+
, D.reflow "This usually means that the package author moved the version tag, so report it to them and see if that is the issue. Check <https://guida-lang.org/community> for help!"
25522552
]
25532553

25542554

src/Terminal/Diff.elm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,11 @@ readOutline (Env maybeRoot _ _ registry) =
188188
let
189189
pkg =
190190
case pkgOutline of
191-
Outline.GuidaPkgOutline pkg_ _ _ _ _ _ _ _ ->
192-
pkg_
191+
Outline.GuidaPkgOutline guidaPkg _ _ _ _ _ _ _ ->
192+
guidaPkg
193193

194-
Outline.ElmPkgOutline pkg_ _ _ _ _ _ _ _ ->
195-
pkg_
194+
Outline.ElmPkgOutline elmPkg _ _ _ _ _ _ _ ->
195+
elmPkg
196196
in
197197
case Registry.getVersions pkg registry of
198198
Just vsns ->

src/Terminal/Format.elm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ toConsoleErrorMessage errorMessage =
299299

300300
SingleOutputWithMultipleInputs ->
301301
unlines
302-
[ "Can't write to the OUTPUT path, because multiple .guida files have been specified."
302+
[ "Can't write to the OUTPUT path, because multiple files have been specified."
303303
, ""
304-
, "Please remove the --output argument. The .guida files in INPUT will be formatted in place."
304+
, "Please remove the --output argument. The files in INPUT will be formatted in place."
305305
]
306306

307307
TooManyInputs ->

src/Terminal/Main.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ make =
206206
stack
207207
[ reflow "For example:"
208208
, D.indent 4 <| D.green (D.fromChars "guida make src/Main.guida")
209-
, reflow "This tries to compile a Guida (and Elm) file named src/Main.guida, generating an index.html file if possible."
209+
, reflow "This tries to compile a Guida file named src/Main.guida, generating an index.html file if possible."
210210
]
211211

212212
makeFlags : Terminal.Flags

0 commit comments

Comments
 (0)