diff options
author | Blaž Hrastnik | 2020-12-01 00:53:17 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-03 04:12:07 +0000 |
commit | 39bf1ca82514e1dc56dfebdce2558cce662367d1 (patch) | |
tree | d202637047759b0510a16d8c59fdbbde62b50617 /helix-view/src | |
parent | a7869c728c663f255d5d2544e42f21ccf57b2414 (diff) |
Update deps.
Diffstat (limited to 'helix-view/src')
-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 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>, } |