Fix incomplete line endings (#1866)

This commit is contained in:
Matt Fellenz 2023-08-05 15:15:29 -07:00 committed by GitHub
parent e3115336bf
commit 823fc5e5c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 11 additions and 11 deletions

Binary file not shown.

View File

@ -4,7 +4,7 @@
--- ---
// Test reading plain text files // Test reading plain text files
#let data = read("/files/hello.txt") #let data = read("/files/hello.txt")
#test(data, "Hello, world!") #test(data, "Hello, world!\n")
--- ---
// Error: 18-38 file not found (searched at files/missing.txt) // Error: 18-38 file not found (searched at files/missing.txt)
@ -62,7 +62,7 @@
)) ))
--- ---
// Error: 7-24 failed to parse toml file: expected `.`, `=`, index 15-15 // Error: 7-24 failed to parse toml file: expected `.`, `=`, index 15-16
#toml("/files/bad.toml") #toml("/files/bad.toml")
--- ---