We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 198569a commit 99553adCopy full SHA for 99553ad
lightbug_http/header.mojo
@@ -115,4 +115,4 @@ struct Headers(Writable, Stringable):
115
write_header(writer, header[].key, header[].value)
116
117
fn __str__(self) -> String:
118
- return String.write(self)
+ return String.write(self)
lightbug_http/strings.mojo
@@ -64,4 +64,4 @@ fn find_all(s: String, sub_str: String) -> List[Int]:
64
while current_idx > -1:
65
match_idxs.append(current_idx)
66
current_idx = s.find(sub_str, start=current_idx + 1)
67
- return match_idxs^
+ return match_idxs^
0 commit comments