From 8be637017df050f2cdfbae858fa13cf7bf161960 Mon Sep 17 00:00:00 2001 From: jesuistombe <28653492+jesuistombe@users.noreply.github.com> Date: Thu, 17 Apr 2025 13:42:42 +0200 Subject: [PATCH] Update recipe-authoring.md (#221) --- docs/user-documentation/workshops/recipe-authoring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-documentation/workshops/recipe-authoring.md b/docs/user-documentation/workshops/recipe-authoring.md index d380e788..695559d6 100644 --- a/docs/user-documentation/workshops/recipe-authoring.md +++ b/docs/user-documentation/workshops/recipe-authoring.md @@ -148,7 +148,7 @@ Read up on the following concepts in the [OpenRewrite documentation](https://doc * [TreeVisitingPrinter](https://docs.openrewrite.org/concepts-and-explanations/tree-visiting-printer) 2. [Visitors](https://docs.openrewrite.org/concepts-and-explanations/visitors) * [Cursoring](https://docs.openrewrite.org/concepts-and-explanations/visitors#cursoring) - * [Isomorphic vs. non-isomorphic](https://docs.openrewrite.org/concepts-and-explanations/visitors#isomorphic-vs.-non-isomorphic-visitors) + * [Isomorphic vs. non-isomorphic](https://docs.openrewrite.org/concepts-and-explanations/visitors#isomorphic-vs-non-isomorphic-visitors) 3. [Recipes](https://docs.openrewrite.org/concepts-and-explanations/recipes) These concepts should give you some sense as to the importance of exact type attribution, and how visitors are used to traverse and modify the LST. Without these, it would be next to impossible to write recipes that make changes to your code reliably.