From 2adde93c5d95cb819aef8b368d7b6d07eafbed40 Mon Sep 17 00:00:00 2001 From: Justin McCandless Date: Fri, 21 Dec 2018 10:46:11 -0800 Subject: [PATCH] Address some comments on previous doc improvement PR (flutter/engine#7274) --- engine/src/flutter/lib/ui/text.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/lib/ui/text.dart b/engine/src/flutter/lib/ui/text.dart index abd227d1160..5afd8c50ffc 100644 --- a/engine/src/flutter/lib/ui/text.dart +++ b/engine/src/flutter/lib/ui/text.dart @@ -833,8 +833,8 @@ class TextBox { String toString() => 'TextBox.fromLTRBD(${left.toStringAsFixed(1)}, ${top.toStringAsFixed(1)}, ${right.toStringAsFixed(1)}, ${bottom.toStringAsFixed(1)}, $direction)'; } -/// Disambiguates cases where a string offset could match two locations in the -/// rendered string. +/// A way to disambiguate a [TextPosition] when its offset could match two +/// different locations in the rendered string. /// /// For example, at an offset where the rendered text wraps, there are two /// visual positions that the offset could represent: one prior to the line