Skip to content

Commit 44206aa

Browse files
committed
fix readme link
1 parent 4ab6208 commit 44206aa

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ If available on Hex this package can be added to your Gleam project:
3434
gleam add csv
3535
```
3636

37-
and its documentation can be found at <https://hexdocs.pm/csv>.
37+
and its documentation can be found at <https://hexdocs.pm/gsv>.

manifest.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# You typically do not need to edit this file
33

44
packages = [
5-
{ name = "gleam_stdlib", version = "0.32.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "07D64C26D014CF570F8ACADCE602761EA2E74C842D26F2FD49B0D61973D9966F" },
6-
{ name = "gleeunit", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D3682ED8C5F9CAE1C928F2506DE91625588CC752495988CBE0F5653A42A6F334" },
5+
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
6+
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
77
]
88

99
[requirements]

src/gsv/internal/ast.gleam

+8-5
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ fn parse_p(
6161
[#(tok, loc), ..], Beginning, _ ->
6262
Error(ParseError(
6363
loc,
64-
"Unexpected start to csv content: " <> token.to_lexeme(tok),
64+
"Unexpected start to csv content: "
65+
<> token.to_lexeme(tok),
6566
))
6667

6768
// If we just parsed a field, we're expecting either a comma or a CRLF
@@ -77,7 +78,8 @@ fn parse_p(
7778
[#(tok, loc), ..], JustParsedField, _ ->
7879
Error(ParseError(
7980
loc,
80-
"Expected comma or newline after field, found: " <> token.to_lexeme(tok),
81+
"Expected comma or newline after field, found: "
82+
<> token.to_lexeme(tok),
8183
))
8284

8385
// If we just parsed a CR, we're expecting an LF
@@ -87,7 +89,8 @@ fn parse_p(
8789
[#(tok, loc), ..], JustParsedCR, _ ->
8890
Error(ParseError(
8991
loc,
90-
"Expected \"\\n\" after \"\\r\", found: " <> token.to_lexeme(tok),
92+
"Expected \"\\n\" after \"\\r\", found: "
93+
<> token.to_lexeme(tok),
9194
))
9295

9396
// If we just parsed a comma, we're expecting an Escaped or Non-Escaped string, or another comma
@@ -123,7 +126,7 @@ fn parse_p(
123126
Error(ParseError(
124127
loc,
125128
"Expected escaped or non-escaped string after comma, found: "
126-
<> token.to_lexeme(tok),
129+
<> token.to_lexeme(tok),
127130
))
128131

129132
// If we just parsed a new line, we're expecting an escaped or non-escaped string
@@ -143,7 +146,7 @@ fn parse_p(
143146
Error(ParseError(
144147
loc,
145148
"Expected escaped or non-escaped string after newline, found: "
146-
<> token.to_lexeme(tok),
149+
<> token.to_lexeme(tok),
147150
))
148151

149152
// If we're inside an escaped string, we can take anything until we get a double quote,

0 commit comments

Comments
 (0)