From e8a631a19fc1b044da3ddff358712e129dc487a6 Mon Sep 17 00:00:00 2001 From: nashcft Date: Tue, 7 Dec 2021 07:36:27 +0900 Subject: [PATCH] [docs] Fix link to "debug-checks" page in `core-concepts.md` (#591) * Update core-concepts.md Fix link to `MavericksState` and "debug-checks" page * Revert change of the link to MavericksState.kt --- docs/core-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core-concepts.md b/docs/core-concepts.md index cfad9ce6..2ba3d0fb 100644 --- a/docs/core-concepts.md +++ b/docs/core-concepts.md @@ -16,7 +16,7 @@ Mavericks will also enforce that your state class: 1. Uses only immutable properties 1. Has default values for every property to ensure that your screen can be rendered immediately -Mavericks enforces these through its [debug checks](/debug-checks.md) +Mavericks enforces these through its [debug checks](debug-checks.md) This concept makes reasoning about and testing a screen trivially easy because given a state class, you can have high confidence that your screen will look correct. Example