@@ -1172,7 +1172,7 @@ var resolveReferenceTests = []struct {
1172
1172
{"http://foo.com/bar/baz" , "quux/./dotdot/../dotdot/../dot/./tail/.." , "http://foo.com/bar/quux/dot/" },
1173
1173
1174
1174
// Remove any dot-segments prior to forming the target URI.
1175
- // http ://tools .ietf.org/html/rfc3986#section-5.2.4
1175
+ // https ://datatracker .ietf.org/doc /html/rfc3986#section-5.2.4
1176
1176
{"http://foo.com/dot/./dotdot/../foo/bar" , "../baz" , "http://foo.com/dot/baz" },
1177
1177
1178
1178
// Triple dot isn't special
@@ -1192,7 +1192,7 @@ var resolveReferenceTests = []struct {
1192
1192
{"http://foo.com/foo%2dbar/" , "./baz-quux" , "http://foo.com/foo%2dbar/baz-quux" },
1193
1193
1194
1194
// RFC 3986: Normal Examples
1195
- // http ://tools .ietf.org/html/rfc3986#section-5.4.1
1195
+ // https ://datatracker .ietf.org/doc /html/rfc3986#section-5.4.1
1196
1196
{"http://a/b/c/d;p?q" , "g:h" , "g:h" },
1197
1197
{"http://a/b/c/d;p?q" , "g" , "http://a/b/c/g" },
1198
1198
{"http://a/b/c/d;p?q" , "./g" , "http://a/b/c/g" },
@@ -1218,7 +1218,7 @@ var resolveReferenceTests = []struct {
1218
1218
{"http://a/b/c/d;p?q" , "../../g" , "http://a/g" },
1219
1219
1220
1220
// RFC 3986: Abnormal Examples
1221
- // http ://tools .ietf.org/html/rfc3986#section-5.4.2
1221
+ // https ://datatracker .ietf.org/doc /html/rfc3986#section-5.4.2
1222
1222
{"http://a/b/c/d;p?q" , "../../../g" , "http://a/g" },
1223
1223
{"http://a/b/c/d;p?q" , "../../../../g" , "http://a/g" },
1224
1224
{"http://a/b/c/d;p?q" , "/./g" , "http://a/g" },
0 commit comments