From 63c17152d1eb8ae6ff19c2bc4a6756372bc490c2 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 30 Jul 2023 21:59:41 +0700 Subject: [PATCH] fix: Fix broken intra-doc-link. (#262) --- common/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/lib.rs b/common/src/lib.rs index 9fd856ec..8cc6ffc2 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -707,8 +707,8 @@ pub struct TextPosition { pub struct TextSelection { /// The position where the selection started, and which does not change /// as the selection is expanded or contracted. If there is no selection - /// but only a caret, this must be equal to [`focus`]. This is also known - /// as a degenerate selection. + /// but only a caret, this must be equal to the value of [`TextSelection::focus`]. + /// This is also known as a degenerate selection. pub anchor: TextPosition, /// The active end of the selection, which changes as the selection /// is expanded or contracted, or the position of the caret if there is