diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-12 19:36:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-15 01:09:00 -0700 |
| commit | cfe3db810b7991ef1144afaed4156ddc2586efef (patch) | |
| tree | 070edc52983621820a65909f2b091d8bc152f43b /src/libsyntax/syntax.rs | |
| parent | 36872e4180331e4a7f00329abe7972488ce216cf (diff) | |
| download | rust-cfe3db810b7991ef1144afaed4156ddc2586efef.tar.gz rust-cfe3db810b7991ef1144afaed4156ddc2586efef.zip | |
Reduce the amount of complexity in format!
This renames the syntax-extension file to format from ifmt, and it also reduces the amount of complexity inside by defining all other macros in terms of format_args!
Diffstat (limited to 'src/libsyntax/syntax.rs')
| -rw-r--r-- | src/libsyntax/syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/syntax.rs b/src/libsyntax/syntax.rs index fec3b88aab4..48270702e0d 100644 --- a/src/libsyntax/syntax.rs +++ b/src/libsyntax/syntax.rs @@ -72,7 +72,7 @@ pub mod ext { pub mod cfg; pub mod fmt; - pub mod ifmt; + pub mod format; pub mod env; pub mod bytes; pub mod concat_idents; |
