1
0
Fork 0
mirror of https://github.com/laravel-ls/uri synced 2026-07-04 08:23:43 +02:00

uri.go: format comment

This commit is contained in:
Henrik Hautakoski 2025-05-22 19:45:47 +02:00
parent 016e7e9a41
commit 3ff68398c8

14
uri.go
View file

@ -35,13 +35,13 @@ const (
// (http://tools.ietf.org/html/rfc3986#section-3) with minimal validation // (http://tools.ietf.org/html/rfc3986#section-3) with minimal validation
// and encoding. // and encoding.
// //
// foo://example.com:8042/over/there?name=ferret#nose // foo://example.com:8042/over/there?name=ferret#nose
// \_/ \______________/\_________/ \_________/ \__/ // \_/ \______________/\_________/ \_________/ \__/
// | | | | | // | | | | |
// scheme authority path query fragment // scheme authority path query fragment
// | _____________________|__ // | _____________________|__
// / \ / \ // / \ / \
// urn:example:animal:ferret:nose // urn:example:animal:ferret:nose
type URI string type URI string
// Filename returns the file path for the given URI. // Filename returns the file path for the given URI.