Skip to content

Commit dac1a22

Browse files
authored
Rollup merge of #123462 - fmease:rn-mod-sep-to-path-sep, r=nnethercote
Cleanup: Rename `ModSep` to `PathSep` `::` is usually referred to as the *path separator* (citation needed). The existing name `ModSep` for *module separator* is a bit misleading since it in fact separates the segments of arbitrary path segments, not only ones resolving to modules. Let me just give a shout-out to associated items (`T::Assoc`, `<Ty as Trait>::function`) and enum variants (`Option::None`). Motivation: Reduce friction for new contributors, prevent potential confusion. cc `@petrochenkov` r? nnethercote or compiler
2 parents 7af33b3 + fd20426 commit dac1a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ fn next_space(tok: &TokenKind) -> SpaceState {
10911091
| TokenKind::DotDotEq
10921092
| TokenKind::Question => SpaceState::Punctuation,
10931093

1094-
TokenKind::ModSep
1094+
TokenKind::PathSep
10951095
| TokenKind::Pound
10961096
| TokenKind::Dollar
10971097
| TokenKind::OpenDelim(_)

0 commit comments

Comments
 (0)