From d0e4be5a4d898100d1e24002d315f3a4a93d4ae3 Mon Sep 17 00:00:00 2001 From: Jonathan Schneider Date: Wed, 26 Feb 2025 10:41:21 -0500 Subject: [PATCH] Polish --- rewrite-core/src/main/java/org/openrewrite/Recipe.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rewrite-core/src/main/java/org/openrewrite/Recipe.java b/rewrite-core/src/main/java/org/openrewrite/Recipe.java index 77ddf155b54..1ac26d95f19 100644 --- a/rewrite-core/src/main/java/org/openrewrite/Recipe.java +++ b/rewrite-core/src/main/java/org/openrewrite/Recipe.java @@ -341,7 +341,7 @@ public List getRecipeList() { } /** - * Used to build up a recipe recipes programmatically. Using the + * Used to build up a recipe list programmatically. Using the * methods on {@link RecipeList}, the appearance of a recipe * that chains other recipes with options will be not strikingly * different from defining it in a recipe.yml. @@ -351,11 +351,11 @@ public List getRecipeList() { * since these assistants are primarily optimized for providing completion * assistance in a single file. *

- * When creating a recipe with a fixed recipe recipes, either override + * When creating a recipe with a fixed recipe list, either override * this method or {@link #getRecipeList()} but ideally not * both, as their default implementations are interconnected. * - * @param recipes A recipe recipes used to build up a series of recipes + * @param recipes A recipe list used to build up a series of recipes * in code in a way that looks fairly declarative and * therefore is more amenable to AI code completion. */