aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/document.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index e8f311c5..7c4596ad 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -32,7 +32,7 @@ pub struct Document {
pub changes: ChangeSet,
pub old_state: State,
pub history: History,
- pub version: i64, // should be usize?
+ pub version: i32, // should be usize?
pub diagnostics: Vec<Diagnostic>,
}