Skip to content

Commit

Permalink
'cargo fmt'
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jul 28, 2024
1 parent e21e4eb commit 3963969
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion helix-lsp-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ pub type LSPArray = Vec<serde_json::Value>;

/// Position in a text document expressed as zero-based line and character offset.
/// A position is between two characters like an 'insert' cursor in a editor.
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Copy, Clone, Default, Deserialize, Serialize, Hash)]
#[derive(
Debug, Eq, PartialEq, Ord, PartialOrd, Copy, Clone, Default, Deserialize, Serialize, Hash,
)]
pub struct Position {
/// Line position in a document (zero-based).
pub line: u32,
Expand Down

0 comments on commit 3963969

Please sign in to comment.