Index: sdk/lib/io/file.dart |
diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart |
index 92d144f941e48ca2e05e4ad0251c053549d90366..73668e937b2df940e4c9084dcf446b2dc8193d68 100644 |
--- a/sdk/lib/io/file.dart |
+++ b/sdk/lib/io/file.dart |
@@ -582,9 +582,9 @@ abstract class RandomAccessFile { |
List<int> readSync(int bytes); |
/** |
- * Reads into an existing List<int> from the file. If [start] is present, the |
- * bytes will be filled into [buffer] from at index [start], otherwise index |
- * 0. If [end] is present, the [end] - [start] bytes will be read into |
+ * Reads into an existing [List<int>] from the file. If [start] is present, |
+ * the bytes will be filled into [buffer] from at index [start], otherwise |
+ * index 0. If [end] is present, the [end] - [start] bytes will be read into |
* [buffer], otherwise up to [buffer.length]. If [end] == [start] nothing |
* happends. |
* |
@@ -593,8 +593,8 @@ abstract class RandomAccessFile { |
Future<int> readInto(List<int> buffer, [int start = 0, int end]); |
/** |
- * Synchronously reads into an existing List<int> from the file. If [start] is |
- * present, the bytes will be filled into [buffer] from at index [start], |
+ * Synchronously reads into an existing [List<int>] from the file. If [start] |
+ * is present, the bytes will be filled into [buffer] from at index [start], |
* otherwise index 0. If [end] is present, the [end] - [start] bytes will be |
* read into [buffer], otherwise up to [buffer.length]. If [end] == [start] |
* nothing happends. |