Replace references to "global tag" with "tag"

This commit is contained in:
Richard Feldman 2022-04-25 15:46:32 -04:00
parent 470dddc17b
commit 85e7969c2d
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
61 changed files with 229 additions and 230 deletions

View file

@ -37,7 +37,7 @@ impl<'a> Formattable for Expr<'a> {
| Underscore { .. }
| MalformedIdent(_, _)
| MalformedClosure
| GlobalTag(_)
| Tag(_)
| OpaqueRef(_) => false,
// These expressions always have newlines
@ -272,7 +272,7 @@ impl<'a> Formattable for Expr<'a> {
buf.indent(indent);
buf.push_str(string);
}
GlobalTag(string) | OpaqueRef(string) => {
Tag(string) | OpaqueRef(string) => {
buf.indent(indent);
buf.push_str(string)
}