Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion universal/test/file_system/work_with_files.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pub fn main_test() {
// `write_bits` can be used to write bit array data to a file.
let assert Ok(_) = simplifile.write_bits("tmp/file.bin", <<0, 255>>)

// `write` can be used to read string contents from a file.
// `read` can be used to read string contents from a file.
let assert Ok("Hello, Joe!") = simplifile.read("tmp/file1.txt")

// It will fail if the contents are not unicode.
Expand Down