From a675b7e005e6ebd57f6b20a51a99795e84b8db51 Mon Sep 17 00:00:00 2001 From: Beesafe Date: Fri, 20 Jan 2023 12:03:58 +0000 Subject: [PATCH] Doc: Fix typo in comments Closes https://github.com/dart-lang/sdk/pull/51077 GitOrigin-RevId: cf43719c3f5aa6b551b2906994797c9e79fe2bf8 Change-Id: I45d5864703e5a68d635a5b9aa8881060d6b2bb12 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/279330 Reviewed-by: Slava Egorov Commit-Queue: Slava Egorov --- sdk/lib/io/file.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart index 218c9c55c14..c5be88276cc 100644 --- a/sdk/lib/io/file.dart +++ b/sdk/lib/io/file.dart @@ -640,7 +640,7 @@ abstract class RandomAccessFile { /// Synchronously reads 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.