summaryrefslogtreecommitdiff
path: root/src/compute/table.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/compute/table.rs')
-rw-r--r--src/compute/table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compute/table.rs b/src/compute/table.rs
index b969c8dc..7abb565b 100644
--- a/src/compute/table.rs
+++ b/src/compute/table.rs
@@ -4,7 +4,7 @@ use std::collections::BTreeMap;
use std::fmt::{self, Debug, Display, Formatter};
use std::ops::Index;
-use crate::syntax::span::{Span, Spanned};
+use crate::syntax::{Span, Spanned};
/// A table data structure, which maps from integers (`u64`) or strings to a
/// generic value type.