Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/document.rs')
| -rw-r--r-- | helix-view/src/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index 06a708f0..1c58eda2 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -126,7 +126,7 @@ pub struct SavePoint { #[derive(Debug, thiserror::Error)] pub enum DocumentOpenError { - #[error("path must be a regular file, simlink, or directory")] + #[error("path must be a regular file, symlink, or directory")] IrregularFile, #[error(transparent)] IoError(#[from] io::Error), |