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

Unified Diff: sdk/lib/collection/splay_tree.dart

Issue 140783013: use proper notation for true, false, and null in doc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: long line Created 6 years, 11 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/_internal/lib/isolate_helper.dart ('k') | sdk/lib/core/expando.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/collection/splay_tree.dart
diff --git a/sdk/lib/collection/splay_tree.dart b/sdk/lib/collection/splay_tree.dart
index 114505e9fcb050dff335d4b0665443437afca639..f972c8516d236eb7523dcfd633d44760ba18194d 100644
--- a/sdk/lib/collection/splay_tree.dart
+++ b/sdk/lib/collection/splay_tree.dart
@@ -428,7 +428,7 @@ class SplayTreeMap<K, V> extends _SplayTree<K> implements Map<K, V> {
}
/**
- * Get the first key in the map. Returns [null] if the map is empty.
+ * Get the first key in the map. Returns [:null:] if the map is empty.
*/
K firstKey() {
if (_root == null) return null;
@@ -436,7 +436,7 @@ class SplayTreeMap<K, V> extends _SplayTree<K> implements Map<K, V> {
}
/**
- * Get the last key in the map. Returns [null] if the map is empty.
+ * Get the last key in the map. Returns [:null:] if the map is empty.
*/
K lastKey() {
if (_root == null) return null;
@@ -445,7 +445,7 @@ class SplayTreeMap<K, V> extends _SplayTree<K> implements Map<K, V> {
/**
* Get the last key in the map that is strictly smaller than [key]. Returns
- * [null] if no key was not found.
+ * [:null:] if no key was not found.
*/
K lastKeyBefore(K key) {
if (key == null) throw new ArgumentError(key);
@@ -462,7 +462,7 @@ class SplayTreeMap<K, V> extends _SplayTree<K> implements Map<K, V> {
/**
* Get the first key in the map that is strictly larger than [key]. Returns
- * [null] if no key was not found.
+ * [:null:] if no key was not found.
*/
K firstKeyAfter(K key) {
if (key == null) throw new ArgumentError(key);
« no previous file with comments | « sdk/lib/_internal/lib/isolate_helper.dart ('k') | sdk/lib/core/expando.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698