aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/selection.rs
diff options
context:
space:
mode:
authorIvan Tham2021-10-09 11:35:27 +0000
committerGitHub2021-10-09 11:35:27 +0000
commit4260b31ec059ffa2207f8f2541af1c3996b00cf9 (patch)
tree375e2ac1eecaee642a7140c3aefc766d9046cef8 /helix-core/src/selection.rs
parenta6852fb88f72ea6bb41b19e65b531c17662ba57d (diff)
Update mdbook style and fix unreadable table head (#806)
The styles are now pulled from upstream styles, some of the changes I submitted it back to upstream. Fix #796
Diffstat (limited to 'helix-core/src/selection.rs')
-rw-r--r--helix-core/src/selection.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/helix-core/src/selection.rs b/helix-core/src/selection.rs
index 755ee679..18af4d08 100644
--- a/helix-core/src/selection.rs
+++ b/helix-core/src/selection.rs
@@ -29,10 +29,10 @@ use std::borrow::Cow;
/// "(anchor, head)", followed by example text with "[" and "]"
/// inserted to represent the anchor and head positions:
///
-/// - (0, 3): [Som]e text.
-/// - (3, 0): ]Som[e text.
-/// - (2, 7): So[me te]xt.
-/// - (1, 1): S[]ome text.
+/// - (0, 3): `[Som]e text`.
+/// - (3, 0): `]Som[e text`.
+/// - (2, 7): `So[me te]xt`.
+/// - (1, 1): `S[]ome text`.
///
/// Ranges are considered to be inclusive on the left and
/// exclusive on the right, regardless of anchor-head ordering.