From 3f159f644d14bce4636f14a230dc077862c9ebf2 Mon Sep 17 00:00:00 2001 From: Nilstrieb Date: Sun, 19 Sep 2021 14:24:48 +0200 Subject: [PATCH] remove impl std::fmt::Display for Stmt --- src/stmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stmt.rs b/src/stmt.rs index 782cc71..49d5738 100644 --- a/src/stmt.rs +++ b/src/stmt.rs @@ -1,5 +1,5 @@ use std::collections::HashMap; -ouse std::num::ParseIntError; +use std::num::ParseIntError; /// A span referencing the line where a statement came from. Starts at 0 #[derive(Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]