From 0deb2e2695f66846080b10fde08bd2b70f77dbf3 Mon Sep 17 00:00:00 2001 From: Pier Bover Date: Tue, 16 Oct 2018 13:35:14 -0500 Subject: [PATCH] Fixed link (#2270) --- docs/guides/commands-and-queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/commands-and-queries.md b/docs/guides/commands-and-queries.md index e2332ec94..a1b9b919f 100644 --- a/docs/guides/commands-and-queries.md +++ b/docs/guides/commands-and-queries.md @@ -1,6 +1,6 @@ # Commands & Queries -All commands to a Slate editor's value, whether it's the `selection`, `document`, `history`, etc. happen via "commands" that are applied to a [`Change`]([operations](../reference/slate/change.md). +All commands to a Slate editor's value, whether it's the `selection`, `document`, `history`, etc. happen via "commands" that are applied to a [`Change`](../reference/slate/change.md). Under the covers, Slate takes care of converting each command into a set of low-level [operations](../reference/slate/operation.md) that are applied to produce a new value. This is what makes collaborative editing implementations possible. But you don't have to worry about that, because it happens automatically.