Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/text_annotations.rs')
| -rw-r--r-- | helix-core/src/text_annotations.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/text_annotations.rs b/helix-core/src/text_annotations.rs index ff28a8dd..9704c3d6 100644 --- a/helix-core/src/text_annotations.rs +++ b/helix-core/src/text_annotations.rs @@ -211,7 +211,7 @@ impl<A, M> Layer<'_, A, M> { } impl<'a, A, M> From<(&'a [A], M)> for Layer<'a, A, M> { - fn from((annotations, metadata): (&'a [A], M)) -> Layer<A, M> { + fn from((annotations, metadata): (&'a [A], M)) -> Layer<'a, A, M> { Layer { annotations, current_index: Cell::new(0), |