From a5d3d8230ec18a6b6ce05354e72cbe1a03ef06d8 Mon Sep 17 00:00:00 2001 From: Tyler Kvochick <tymokvo@gmail.com> Date: Thu, 16 Nov 2023 20:35:49 -0500 Subject: [PATCH] Point source link to dotnet/fsharp --- docs/fcs/untypedtree.fsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/fcs/untypedtree.fsx b/docs/fcs/untypedtree.fsx index 74fec11bbae..fc63ab467e7 100644 --- a/docs/fcs/untypedtree.fsx +++ b/docs/fcs/untypedtree.fsx @@ -85,8 +85,9 @@ Walking over the AST The abstract syntax tree is defined as a number of discriminated unions that represent different syntactical elements (such as expressions, patterns, declarations etc.). The best -way to understand the AST is to look at the definitions in [`SyntaxTree.fsi` in the source -code](https://github.com/fsharp/fsharp/blob/main/src/Compiler/SyntaxTree.fsi). +way to understand the AST is to look at the definitions in +[`SyntaxTree.fsi`](https://github.com/dotnet/fsharp/blob/main/src/Compiler/SyntaxTree/SyntaxTree.fsi) +in the source code. The relevant parts are in the following namespace: *)