about summary refs log tree commit diff
path: root/src/libsyntax/README.md
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-02-29 20:10:08 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-02-29 20:47:10 +0300
commite94d3b70cb495df83230cff9ef5bb00f235883e4 (patch)
tree8e00decea40c5a6ad9dbb7fe0809c79357361adf /src/libsyntax/README.md
parente9bca510fe17354f876aa289bb39d347d7c69c69 (diff)
downloadrust-e94d3b70cb495df83230cff9ef5bb00f235883e4.tar.gz
rust-e94d3b70cb495df83230cff9ef5bb00f235883e4.zip
Move directory `libsyntax` -> `librustc_ast`
Diffstat (limited to 'src/libsyntax/README.md')
-rw-r--r--src/libsyntax/README.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libsyntax/README.md b/src/libsyntax/README.md
deleted file mode 100644
index daa252ef455..00000000000
--- a/src/libsyntax/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-The `syntax` crate contains those things concerned purely with syntax
-– that is, the AST ("abstract syntax tree"), parser, pretty-printer,
-lexer, macro expander, and utilities for traversing ASTs.
-
-For more information about how these things work in rustc, see the
-rustc guide:
-
-- [Parsing](https://rust-lang.github.io/rustc-guide/the-parser.html)
-- [Macro Expansion](https://rust-lang.github.io/rustc-guide/macro-expansion.html)