From 63a688cf7570266b11c265b4beb900b73691d4eb Mon Sep 17 00:00:00 2001 From: Peter Ye <46109467+yaxollum@users.noreply.github.com> Date: Sun, 25 Jul 2021 17:17:25 -0400 Subject: [PATCH] Fix LALRPOP book link in development guide --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index c79bee4703..4d65c4318c 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -135,7 +135,7 @@ an Abstract Syntax Tree (AST): - The Parser relies on `LALRPOP`, a Rust parser generator framework. The LALRPOP definition of Python's grammar is in `parser/src/python.lalrpop`. - More information on parsers and a tutorial can be found in the - [LALRPOP book](https://lalrpop.github.io/lalrpop/README.html). + [LALRPOP book](https://lalrpop.github.io/lalrpop/). - AST: `ast/` implements in Rust the Python types and expressions represented by the AST nodes.