aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-01 00:53:17 +0000
committerBlaž Hrastnik2020-12-03 04:12:07 +0000
commit39bf1ca82514e1dc56dfebdce2558cce662367d1 (patch)
treed202637047759b0510a16d8c59fdbbde62b50617 /helix-view
parenta7869c728c663f255d5d2544e42f21ccf57b2414 (diff)
Update deps.
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>,
}