Skip to content

Commit 99553ad

Browse files
committed
add back newlines
1 parent 198569a commit 99553ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightbug_http/header.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ struct Headers(Writable, Stringable):
115115
write_header(writer, header[].key, header[].value)
116116

117117
fn __str__(self) -> String:
118-
return String.write(self)
118+
return String.write(self)

lightbug_http/strings.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ fn find_all(s: String, sub_str: String) -> List[Int]:
6464
while current_idx > -1:
6565
match_idxs.append(current_idx)
6666
current_idx = s.find(sub_str, start=current_idx + 1)
67-
return match_idxs^
67+
return match_idxs^

0 commit comments

Comments
 (0)