Skip to content

Commit

Permalink
chore: remove try in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
weskoerber committed Feb 10, 2024
1 parent da5e60b commit d5d4046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ A simple query string parser for zig.
pub fn main() !void {
const uri = try std.Uri.parse("https://example.com?hello=world");

var query_params = try kewpie.iter(uri);
var query_params = kewpie.iter(uri);
while (query_params.next()) |param| {
// `param` holds a QueryParam struct
// ...
Expand Down

0 comments on commit d5d4046

Please sign in to comment.