Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(508)

Unified Diff: sdk/lib/core/uri.dart

Issue 1401063004: Fixing many link syntaxes in doc comments (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/uri.dart
diff --git a/sdk/lib/core/uri.dart b/sdk/lib/core/uri.dart
index 78f42de6bdd52bbf322cd55c9ab71673557bbad9..7b8e9ad11db09bbb0be5934ce604d5bf64e5522c 100644
--- a/sdk/lib/core/uri.dart
+++ b/sdk/lib/core/uri.dart
@@ -12,8 +12,8 @@ part of dart.core;
* * [URIs][uris] in the [library tour][libtour]
* * [RFC-3986](http://tools.ietf.org/html/rfc3986)
*
- * [uris]: http://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-uri
- * [libtour]: http://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html
+ * [uris]: https://www.dartlang.org/docs/dart-up-and-running/ch03.html#uris
+ * [libtour]: https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html
*/
class Uri {
// The host name of the URI.
@@ -1020,10 +1020,10 @@ class Uri {
/**
* Returns the URI query split into a map according to the rules
- * specified for FORM post in the [HTML 4.01 specification section 17.13.4]
- * (http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4
- * "HTML 4.01 section 17.13.4"). Each key and value in the returned map
- * has been decoded. If there is no query the empty map is returned.
+ * specified for FORM post in the [HTML 4.01 specification section
+ * 17.13.4](http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4 "HTML 4.01 section 17.13.4").
+ * Each key and value in the returned map has been decoded. If there is no
+ * query the empty map is returned.
*
* Keys in the query string that have no value are mapped to the
* empty string.
@@ -1589,9 +1589,8 @@ class Uri {
*
* Returns the resolved URI.
*
- * The algorithm "Transform Reference" for resolving a reference is
- * described in [RFC-3986 Section 5]
- * (http://tools.ietf.org/html/rfc3986#section-5 "RFC-1123").
+ * The algorithm "Transform Reference" for resolving a reference is described
+ * in [RFC-3986 Section 5](http://tools.ietf.org/html/rfc3986#section-5 "RFC-1123").
*
* Updated to handle the case where the base URI is just a relative path -
* that is: when it has no scheme or authority and the path does not start
@@ -2039,11 +2038,9 @@ class Uri {
/**
* Returns the [query] split into a map according to the rules
- * specified for FORM post in the
- * [HTML 4.01 specification section 17.13.4]
- * (http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4
- * "HTML 4.01 section 17.13.4"). Each key and value in the returned
- * map has been decoded. If the [query]
+ * specified for FORM post in the [HTML 4.01 specification section
+ * 17.13.4](http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4 "HTML 4.01 section 17.13.4").
+ * Each key and value in the returned map has been decoded. If the [query]
* is the empty string an empty map is returned.
*
* Keys in the query string that have no value are mapped to the
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698