fix tiny typo in lib/io/file.dart

Closes https://github.com/dart-lang/sdk/pull/54562

GitOrigin-RevId: f3b2502c0124f287f3eccc021c5f1623839ae3d7
Change-Id: I6af749c16a5358e910bc883ef1ddfc65c30a0c3c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/345369
Reviewed-by: Lasse Nielsen <lrn@google.com>
Commit-Queue: Kevin Moore <kevmoo@google.com>
Reviewed-by: Brian Quinlan <bquinlan@google.com>
Commit-Queue: Brian Quinlan <bquinlan@google.com>
This commit is contained in:
osama 2024-01-10 20:46:38 +00:00 committed by Commit Queue
parent c88939d597
commit 9329f7bad7

View file

@ -710,7 +710,7 @@ abstract interface class RandomAccessFile {
/// Reads bytes into an existing [buffer].
///
/// Reads bytes and writes then into the range of [buffer]
/// Reads bytes and writes them into the range of [buffer]
/// from [start] to [end].
/// The [start] must be non-negative and no greater than [buffer].length.
/// If [end] is omitted, it defaults to [buffer].length.