diff options
author | Blaž Hrastnik | 2021-08-29 14:02:46 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-29 14:02:46 +0000 |
commit | 4d24a436519d98b65f5b3b4a6f9970cc815c228f (patch) | |
tree | 52be5955adf1c01c9d5ba438b29e532ef50c49c4 /helix-core/src/lib.rs | |
parent | 81f51c13fa7de0ce2a7e787f7d6385d0e72097e9 (diff) |
dap: use smallvec! macro
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index d971464a..0854eb04 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -195,7 +195,7 @@ pub use {regex, tree_sitter}; pub use graphemes::RopeGraphemes; pub use position::{coords_at_pos, pos_at_coords, Position}; pub use selection::{Range, Selection}; -pub use smallvec::SmallVec; +pub use smallvec::{smallvec, SmallVec}; pub use syntax::Syntax; pub use diagnostic::Diagnostic; |