Skip to content

Commit

Permalink
Merge pull request #62 from openrewrite/recipe-desc
Browse files Browse the repository at this point in the history
Clean up recipe names + descriptions
  • Loading branch information
sambsnyd authored Jul 14, 2023
2 parents 5149579 + c9faffb commit 65daad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/openrewrite/python/ChangeMethodName.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ChangeMethodName extends Recipe {

@Override
public String getDisplayName() {
return "Example recipe to change a method name";
return "Change method name";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public class FindPythonSources extends Recipe {

@Override
public String getDisplayName() {
return "Find Python sources and collect data metrics";
return "Find Python sources and collect metrics on them";
}

@Override
public String getDescription() {
return "Use data table to collect source files types and counts of files with extensions `.py`.";
return "Creates a data table which contains detailed information about all `.py` files such as where those files are and what version of Python is being used.";
}

@Override
Expand Down

0 comments on commit 65daad1

Please sign in to comment.