diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-09-30 12:38:02 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-09-30 12:45:33 +0200 |
| commit | bc1b4216a802d09e8d00dd277a0e204d49bcaa7f (patch) | |
| tree | 31dabd48d5062fdd684797ed6053bf279ba67490 /src/compute/table.rs | |
| parent | fee5170a68a6ef97108d731a4873787894f65a06 (diff) | |
Reorganize syntax types into two modules 📦
Diffstat (limited to 'src/compute/table.rs')
| -rw-r--r-- | src/compute/table.rs | 2 |
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. |
