Skip to content

Commit 853f1c2

Browse files
committed
Add quotes around <dependencies> in docs
1 parent f9e370a commit 853f1c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/openrewrite/java/dependencies/RemoveDependency.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.openrewrite.java.dependencies;
1717

18+
import com.sun.org.apache.bcel.internal.classfile.SourceFile;
1819
import lombok.EqualsAndHashCode;
1920
import lombok.Value;
2021
import org.jspecify.annotations.Nullable;
@@ -71,7 +72,7 @@ public String getDisplayName() {
7172
@Override
7273
public String getDescription() {
7374
return "For Gradle project, removes a single dependency from the dependencies section of the `build.gradle`.\n" +
74-
"For Maven project, removes a single dependency from the <dependencies> section of the pom.xml.";
75+
"For Maven project, removes a single dependency from the `<dependencies>` section of the pom.xml.";
7576
}
7677

7778
@Override

0 commit comments

Comments
 (0)