Nit: fix Debug impl of `PlaceholderIndex`

This commit is contained in:
Niko Matsakis 2018-07-25 16:37:05 +03:00
parent e43096ff05
commit d85a7da8fe
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ newtype_index!(PointIndex { DEBUG_FORMAT = "PointIndex({})" });
/// Computed just by subtracting one from `UniverseIndex`; this is
/// because the `0` value for `UniverseIndex` represents the root
/// universe, and we don't need/want a bit for that one.
newtype_index!(PlaceholderIndex { DEBUG_FORMAT = "PointIndex({})" });
newtype_index!(PlaceholderIndex { DEBUG_FORMAT = "PlaceholderIndex({})" });
/// An individual element in a region value -- the value of a
/// particular region variable consists of a set of these elements.