Skip to content

Commit a2e1cb0

Browse files
committedJan 19, 2025·
Document URI::resource()
1 parent 78b62e8 commit a2e1cb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ $uri->user(); // "user"
4141
$uri->password(); // util.Secret("password")
4242
$uri->path(); // "index"
4343
$uri->query(); // "sort=name"
44-
$uri->params(); // util.URIParameters("sort=name")
44+
$uri->params(); // util.uri.Parameters("sort=name")
4545
$uri->param('sort'); // "name"
4646
$uri->fragment(); // "top"
47+
$uri->resource(); // "/index?sort=name#top"
4748
```
4849

4950
### Creating or modifying

0 commit comments

Comments
 (0)
Please sign in to comment.