From 0bd7ff67f6312c981104f616c6d829b31f1c479b Mon Sep 17 00:00:00 2001 From: falfiya <22552895+falfiya@users.noreply.github.com> Date: Sun, 9 Aug 2026 11:16:10 -0700 Subject: [PATCH] Update rowan overview link --- README.md | 2 +- examples/s_expressions.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0d5b133..a09b5bfb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Rowan is a library for lossless syntax trees, inspired in part by Swift's [libsyntax](https://github.com/apple/swift/tree/5e2c815edfd758f9b1309ce07bfc01c4bc20ec23/lib/Syntax). -A conceptual overview is available in the [rust-analyzer repo](https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/dev/syntax.md). +A conceptual overview is available in the [rust-analyzer book](https://rust-analyzer.github.io/book/contributing/syntax.html). See `examples/s_expressions` for a tutorial, and [rust-analyzer](https://github.com/rust-analyzer/rust-analyzer/) for real-world usage. diff --git a/examples/s_expressions.rs b/examples/s_expressions.rs index e7df4c64..f3ceec33 100644 --- a/examples/s_expressions.rs +++ b/examples/s_expressions.rs @@ -7,7 +7,7 @@ //! //! It's suggested to read the conceptual overview of the design //! alongside this tutorial: -//! https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/dev/syntax.md +//! https://rust-analyzer.github.io/book/contributing/syntax.html /// Let's start with defining all kinds of tokens and /// composite nodes.