Skip to content

Commit

Permalink
Add more missing dots at the end of descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Jul 24, 2024
1 parent cd9e9e3 commit 59524b8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/rewrite/jakarta-ee-10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.jakarta.UpdateJakartaPlatform10
displayName: Update Jakarta EE Platform Dependencies to 10.0.0
description: Update Jakarta EE Platform Dependencies to 10.0.0
description: Update Jakarta EE Platform Dependencies to 10.0.0.
recipeList:
- org.openrewrite.java.dependencies.UpgradeDependencyVersion:
groupId: jakarta.platform
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/rewrite/jakarta-ee-9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.jakarta.JavaxPersistenceToJakartaPersistence
displayName: Migrate deprecated `javax.persistence` packages to `jakarta.persistence`
description: Java EE has been rebranded to Jakarta EE, necessitating a package relocation
description: Java EE has been rebranded to Jakarta EE, necessitating a package relocation.
recipeList:
- org.openrewrite.java.dependencies.ChangeDependency:
oldGroupId: javax.persistence
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/rewrite/jakarta-faces-4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.jakarta.JakartaFacesEcmaScript
displayName: Migrate JSF values inside EcmaScript files
description: Convert JSF to Faces values inside JavaScript,TypeScript, and Properties files
description: Convert JSF to Faces values inside JavaScript,TypeScript, and Properties files.
tags:
- jakarta
- faces
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/rewrite/java-lang-var.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.lang.UseVar
displayName: Use local variable type inference
description: Apply local variable type inference (`var`) for primitives and objects. These recipes can cause unused
description: >-
Apply local variable type inference (`var`) for primitives and objects. These recipes can cause unused
imports, be advised to run `org.openrewrite.java.RemoveUnusedImports afterwards.
tags:
- refactoring
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/rewrite/java-version-17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.DeprecatedLogRecordThreadID
displayName: Adopt `setLongThreadID` in `java.util.logging.LogRecord`
description: Avoid using the deprecated methods in `java.util.logging.LogRecord`
description: Avoid using the deprecated methods in `java.util.logging.LogRecord`.
tags:
- java17
recipeList:
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/META-INF/rewrite/java-version-21.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.RemovedSubjectMethods
displayName: Adopt `javax.security.auth.Subject.current()` and `javax.security.auth.Subject.callAs()` methods`
description: Replaces the `javax.security.auth.Subject.getSubject()` and `javax.security.auth.Subject.doAs()` methods
description: >-
Replaces the `javax.security.auth.Subject.getSubject()` and `javax.security.auth.Subject.doAs()` methods
with `javax.security.auth.Subject.current()` and `javax.security.auth.Subject.callAs()`.
tags:
- java21
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/rewrite/no-guava.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ recipeList:
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.migrate.guava.PreferMathAddExact
displayName: Prefer `Math#addExact`
description: Prefer `java.lang.Math#addExact` instead of using `com.google.common.math.IntMath#checkedAdd` or `com.google.common.math.IntMath#addExact`
description: Prefer `java.lang.Math#addExact` instead of using `com.google.common.math.IntMath#checkedAdd` or `com.google.common.math.IntMath#addExact`.
tags:
- guava
recipeList:
Expand Down

0 comments on commit 59524b8

Please sign in to comment.