From 06c25a7413dd8b6c5bae96dae9147984060dac9f Mon Sep 17 00:00:00 2001 From: Anson Chung <58066418+anscg@users.noreply.github.com> Date: Tue, 8 Oct 2024 03:57:29 +0800 Subject: [PATCH] docs: add links in design.md (#504) * Update links in design.md * Update design.md --- docs/design.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/design.md b/docs/design.md index ac4e2cca5f..5c785ac239 100644 --- a/docs/design.md +++ b/docs/design.md @@ -28,28 +28,28 @@ There are different types of packages in Nevermore. It's useful to reason about ### Utility libraries Library packages tend to be packages that export one or multiple libraries. These are usually pure utility functions. Here are some sample library packages: -* [Table] -* [Math] -* [RandomUtils] -* [Set] -* [Elo] +* [Table](/api/Table) +* [Math](/api/Math) +* [RandomUtils](/api/RandomUtils) +* [Set](/api/Set) +* [Elo](/api/EloUtils) ### Object utility libraries These are very similiar to libraries but they tend to export an object, and some supporting objects. These objects are concepts that are useful to learn, and generally exist outside of Roblox (although they may not). These are fundamental building blocks and patterns in Roblox. -* [Octree] -* [Maid] -* [Rx] -* [Promise] -* [Binder] -* [Queue] +* [Octree](/api/Octree) +* [Maid](/api/Maid) +* [Rx](/api/Rx) +* [Promise](/api/Promise) +* [Binder](/api/Binder) +* [Queue](/api/Queue) ### Integration services There services are primary about providing a contract between two services. -* [GameConfigService] -* [CameraStackService] -* [PlayerDataStoreService] +* [GameConfigService](/api/GameConfigService) +* [CameraStackService](/api/CameraStackService) +* [PlayerDataStoreService](/api/PlayerDataStoreService)