diff options
author | Nadrieril | 2019-12-24 20:25:06 +0000 |
---|---|---|
committer | Nadrieril | 2019-12-24 20:25:06 +0000 |
commit | 18dd5ba3ae94fd89dd27c0ae3891ac3e43ace350 (patch) | |
tree | 151473a0a6cb7222fd6b4eb3abf1cfacca012aad /dhall | |
parent | 5f52c5bda0277edd87323eb67dcda721cd18a9d3 (diff) |
Note waiting for release of abnf
Diffstat (limited to '')
-rw-r--r-- | dhall/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/build.rs b/dhall/build.rs index 3d4a2eb..9b00684 100644 --- a/dhall/build.rs +++ b/dhall/build.rs @@ -403,7 +403,7 @@ fn convert_abnf_to_pest() -> std::io::Result<()> { let mut data = read_to_string(abnf_path)?; data.push('\n'); - let data = data.replace('∀', ""); // See https://github.com/duesee/abnf/issues/11 + let data = data.replace('∀', ""); // TODO: waiting for abnf 0.6.1 let mut rules = abnf_to_pest::parse_abnf(&data)?; for line in BufReader::new(File::open(visibility_path)?).lines() { |