From fb521ff977801a4b6a7f213c9d387e9fd63ef9cc Mon Sep 17 00:00:00 2001 From: wrvnnull <122137078+wrvnnull@users.noreply.github.com> Date: Fri, 28 Aug 2026 00:51:29 +0800 Subject: [PATCH] docs: link the Sway docs hub from the Standard Library page (closes #4194) Add a line pointing readers to the full documentation hub (fuellabs.github.io/sway) from the Standard Library introduction. --- docs/book/src/introduction/standard_library.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/book/src/introduction/standard_library.md b/docs/book/src/introduction/standard_library.md index a4689297307..9d322c99e1f 100644 --- a/docs/book/src/introduction/standard_library.md +++ b/docs/book/src/introduction/standard_library.md @@ -9,6 +9,8 @@ The Sway Standard Library is the foundation of portable Sway software, a set of The entire Sway standard library is a Forc project called `std`, and is available directly [here](https://github.com/FuelLabs/sway/tree/master/sway-lib-std). Navigate to the appropriate tagged release if the latest `master` is not compatible. You can find the latest `std` documentation [here](https://fuellabs.github.io/sway/master/std/). +The full Sway documentation hub, including the Sway Book, Forc reference, and library API docs, is available at [fuellabs.github.io/sway](https://fuellabs.github.io/sway). + ## Using the Standard Library The standard library is made implicitly available to all Forc projects created using [`forc new`](../forc/commands/forc_new.md). In other words, it is not required to manually specify `std` as an explicit dependency. Forc will automatically use the version of `std` that matches its version.