From 6f2dda463e6233412c571bd55ab9007cf79c8967 Mon Sep 17 00:00:00 2001 From: zaaarf Date: Fri, 15 Nov 2024 11:43:40 +0100 Subject: [PATCH] docs: missing ` on code --- src/workspace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workspace.rs b/src/workspace.rs index 787166a..1e7313e 100644 --- a/src/workspace.rs +++ b/src/workspace.rs @@ -37,7 +37,7 @@ use napi_derive::napi; /// A currently active shared development environment /// /// Workspaces encapsulate a working environment: cursor positions, filetree, user list -/// and more. Each holds a [cursor::Controller] and a map of [buffer::Controller]s. +/// and more. Each holds a [`cursor::Controller`] and a map of [`buffer::Controller`]s. /// Using a workspace handle, it's possible to receive events (user join/leave, filetree updates) /// and create/delete/attach to new buffers. #[derive(Debug, Clone)]