From 0d78c1fbf6089da2dbe2aafec8c4d5a509a977ce Mon Sep 17 00:00:00 2001 From: f01dab1e Date: Fri, 1 Dec 2023 08:19:48 +0000 Subject: [PATCH] chore: fix typo :) --- compiler/fm/src/file_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fm/src/file_map.rs b/compiler/fm/src/file_map.rs index 982e4e9f070..199723a28b5 100644 --- a/compiler/fm/src/file_map.rs +++ b/compiler/fm/src/file_map.rs @@ -5,7 +5,7 @@ use std::{ops::Range, path::PathBuf}; // XXX: File and FileMap serve as opaque types, so that the rest of the library does not need to import the dependency // or worry about when we change the dep -#[derive(Clone, Dpebug)] +#[derive(Clone, Debug)] pub struct PathString(PathBuf); impl std::fmt::Display for PathString {