Skip to content

Commit

Permalink
fix snake_case in Url.roc
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewilliamboswell committed Jan 9, 2025
1 parent 3d96084 commit 64a7901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/Url.roc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Url := Str implements [Inspect]
## ```
## The [Str.count_utf8_bytes](https://www.roc-lang.org/builtins/Str#countUtf8Bytes) function can be helpful in finding out how many bytes to reserve.
##
## There is no `Url.withCapacity` because it's better to reserve extra capacity
## There is no `Url.with_capacity` because it's better to reserve extra capacity
## on a [Str] first, and then pass that string to [Url.from_str]. This function will make use
## of the extra capacity.
reserve : Url, U64 -> Url
Expand Down

0 comments on commit 64a7901

Please sign in to comment.