about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-04-04 19:03:32 +0200
committerLeón Orell Valerian Liehr <me@fmease.dev>2024-04-04 19:44:04 +0200
commitfd204262e543d31189aa3e8db593974b978181ec (patch)
tree2c45914912be118cf4d8bd5fabdd2810b75ec51d
parent31a4eae7eac98b29cfe938b48498b24c71ddc925 (diff)
downloadrust-fd204262e543d31189aa3e8db593974b978181ec.tar.gz
rust-fd204262e543d31189aa3e8db593974b978181ec.zip
Rename ModSep to PathSep
-rw-r--r--src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.rs b/src/macros.rs
index 8d77d2b3254..6b24b1aec5d 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -1091,7 +1091,7 @@ fn next_space(tok: &TokenKind) -> SpaceState {
         | TokenKind::DotDotEq
         | TokenKind::Question => SpaceState::Punctuation,
 
-        TokenKind::ModSep
+        TokenKind::PathSep
         | TokenKind::Pound
         | TokenKind::Dollar
         | TokenKind::OpenDelim(_)