Add blank line to test_load for Docs

This commit is contained in:
Jonathan Schear 2024-03-24 14:34:40 -04:00
parent ab4a5343a0
commit f511c061ab
No known key found for this signature in database
GPG key ID: 0F4D841667534076
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,8 @@ interface Docs
User : { name : Str }
## Makes a user
##
## Takes a name Str.
makeUser : Str -> User
makeUser = \name ->
{ name }

View file

@ -450,7 +450,7 @@ fn load_docs() {
let expected = vec![
(None, Some("An interface for docs tests\n")),
(Some("User"), Some("This is a user\n")),
(Some("makeUser"), Some("Makes a user\n")),
(Some("makeUser"), Some("Makes a user\n\nTakes a name Str.\n")),
(Some("getName"), Some("Gets the user's name\n")),
(Some("getNameExposed"), None),
]