about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorSunjay Varma <varma.sunjay@gmail.com>2018-05-14 11:21:20 -0700
committerSunjay Varma <varma.sunjay@gmail.com>2018-05-14 11:21:20 -0700
commit7741e2f4caab612a4cb8d49d3d20708719ca4b1d (patch)
tree1ebc2958dca4a9e76a2ebb49c58ee8d0070d0634 /src/doc/rustc-dev-guide
parent97c8ed36232a3cc2ab696d86022143e0ef7f2d84 (diff)
downloadrust-7741e2f4caab612a4cb8d49d3d20708719ca4b1d.tar.gz
rust-7741e2f4caab612a4cb8d49d3d20708719ca4b1d.zip
Even more review changes
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/chalk-overview.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/chalk-overview.md b/src/doc/rustc-dev-guide/src/chalk-overview.md
index 926c7f5ace5..02e09429301 100644
--- a/src/doc/rustc-dev-guide/src/chalk-overview.md
+++ b/src/doc/rustc-dev-guide/src/chalk-overview.md
@@ -37,7 +37,8 @@ extend.
 Chalk is designed to be incorporated with the Rust compiler, so the syntax and
 concepts it deals with heavily borrow from Rust. It is convenient for the sake
 of testing to be able to run chalk on its own, so chalk includes a parser for a
-Rust-like syntax.
+Rust-like syntax. This syntax is orthogonal to the Rust AST and grammar. It is
+not intended to look exactly like it or support the exact same syntax.
 
 The parser takes that syntax and produces an [Abstract Syntax Tree (AST)][ast].
 You can find the [complete definition of the AST][chalk-ast] in the source code.