From b1d1d89ca56584f1c28fe1f0b5be79ca82b5e219 Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Tue, 20 May 2025 07:49:23 +1200 Subject: [PATCH] Include link to the new book (#7056) Signed-off-by: Nick Cameron --- docs/kcl-lang/index.md | 2 +- docs/kcl-std/modules/std.md | 2 +- rust/kcl-lib/std/prelude.kcl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/kcl-lang/index.md b/docs/kcl-lang/index.md index b6caa08b2..9585e3a02 100644 --- a/docs/kcl-lang/index.md +++ b/docs/kcl-lang/index.md @@ -4,7 +4,7 @@ excerpt: "Documentation of the KCL language for the Zoo Design Studio." layout: manual --- -This is a reference for KCL. If you are learning KCL, you may prefer the [guide]() which explains +This is a reference for KCL. If you are learning KCL, you may prefer the [guide](https://zoo.dev/docs/kcl-book/intro.html) which explains things in a more tutorial fashion. See also our documentation of the [standard library](/docs/kcl-std). ## Topics diff --git a/docs/kcl-std/modules/std.md b/docs/kcl-std/modules/std.md index 490c29b76..914315518 100644 --- a/docs/kcl-std/modules/std.md +++ b/docs/kcl-std/modules/std.md @@ -11,7 +11,7 @@ Contains frequently used constants, functions for interacting with the KittyCAD The standard library is organised into modules (listed below), but most things are always available in KCL programs. -You might also want the [KCL language reference](/docs/kcl-lang) or the [KCL guide](). +You might also want the [KCL language reference](/docs/kcl-lang) or the [KCL guide](https://zoo.dev/docs/kcl-book/intro.html). ## Modules diff --git a/rust/kcl-lib/std/prelude.kcl b/rust/kcl-lib/std/prelude.kcl index 9ca6a478a..3029abe43 100644 --- a/rust/kcl-lib/std/prelude.kcl +++ b/rust/kcl-lib/std/prelude.kcl @@ -6,7 +6,7 @@ /// The standard library is organised into modules (listed below), but most things are always available /// in KCL programs. /// -/// You might also want the [KCL language reference](/docs/kcl-lang) or the [KCL guide](). +/// You might also want the [KCL language reference](/docs/kcl-lang) or the [KCL guide](https://zoo.dev/docs/kcl-book/intro.html). @no_std @settings(defaultLengthUnit = mm, kclVersion = 1.0)