From 63855ed15c5c5fa336de749f4b92c9ba45441534 Mon Sep 17 00:00:00 2001 From: Ian Storm Taylor Date: Wed, 18 Oct 2017 08:50:24 -0700 Subject: [PATCH] fix operation link in docs --- docs/guides/changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/changes.md b/docs/guides/changes.md index 412c177c1..031053a29 100644 --- a/docs/guides/changes.md +++ b/docs/guides/changes.md @@ -3,7 +3,7 @@ All changes to a Slate editor's state, whether it's the `selection`, `document`, `history`, etc. happen via "changes"—specifically, via the [`Change`](../reference/slate/change.md) model. -This is important because the `Change` model is responsible for ensuring that every change to a Slate state can be expressed in terms of low-level [operations](./operation.md). But you don't have to worry about that, because it happens automatically. +This is important because the `Change` model is responsible for ensuring that every change to a Slate state can be expressed in terms of low-level [operations](../reference/slate/operation.md). But you don't have to worry about that, because it happens automatically. You just need to understand changes...