diff options
| author | bors <bors@rust-lang.org> | 2013-09-15 01:50:50 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-09-15 01:50:50 -0700 |
| commit | 4ecb0a372d4b246f694bf780d50809dc0fb32018 (patch) | |
| tree | 187f30d8b9ae662bc385558473e1c9c1fa5b6424 /src/libsyntax/syntax.rs | |
| parent | 36872e4180331e4a7f00329abe7972488ce216cf (diff) | |
| parent | 640613892fc5ab055853b48934b6e4ecf895c2dd (diff) | |
| download | rust-4ecb0a372d4b246f694bf780d50809dc0fb32018.tar.gz rust-4ecb0a372d4b246f694bf780d50809dc0fb32018.zip | |
auto merge of #9153 : alexcrichton/rust/simplify-format, r=huonw
This follows from the discussion in #9012. * All macros are now defined in terms of `format_args!` allowing for removal of a good bit of code in the syntax extension * The syntax extension is now in a more aptly-named file, `format.rs` * Documentation was added for the `format!`-related macros.
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; |
