diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-03-12 18:30:12 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-03-12 18:32:51 +0000 |
commit | 80a8083b143eaa24218ec5fda16f947658fb823d (patch) | |
tree | 32b64f2327e30270e0f2126ee0f80363956d4527 /src/iodata.gleam | |
parent | 2a7d9061e4ec9c763053b078db2d98400bd08dd5 (diff) | |
download | gleam_stdlib-80a8083b143eaa24218ec5fda16f947658fb823d.tar.gz gleam_stdlib-80a8083b143eaa24218ec5fda16f947658fb823d.zip |
Compile map module
Diffstat (limited to 'src/iodata.gleam')
-rw-r--r-- | src/iodata.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iodata.gleam b/src/iodata.gleam index 1d65e11..1b28577 100644 --- a/src/iodata.gleam +++ b/src/iodata.gleam @@ -5,7 +5,7 @@ import any pub external type Iodata; pub external fn prepend(Iodata, String) -> Iodata = - "gleam__stdlib" "iodata_prepend"; + "gleam__stdlib" "iodata_concat"; pub external fn append(Iodata, String) -> Iodata = "gleam__stdlib" "iodata_append"; |