Skip to content

Commit 0baa6da

Browse files
authored
refactor: streamline naming conventions to enable and ensure consistent and easy discovery (#1106)
...of related functionality and feature methods by applying an appropriate method prefix
1 parent 37296c9 commit 0baa6da

18 files changed

+783
-904
lines changed

benchmark_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ func Benchmark_parseRequestURL_PathParams(b *testing.B) {
1616
c := New().SetPathParams(map[string]string{
1717
"foo": "1",
1818
"bar": "2",
19-
}).SetRawPathParams(map[string]string{
19+
}).SetPathRawParams(map[string]string{
2020
"foo": "3",
2121
"xyz": "4",
2222
})
2323
r := c.R().SetPathParams(map[string]string{
2424
"foo": "5",
2525
"qwe": "6",
26-
}).SetRawPathParams(map[string]string{
26+
}).SetPathRawParams(map[string]string{
2727
"foo": "7",
2828
"asd": "8",
2929
})

0 commit comments

Comments
 (0)