Fix typo in AntoraAsciidocAttributes class

See gh-40946
This commit is contained in:
Seungrae 2024-05-30 01:57:57 +09:00 committed by Scott Frederick
parent 802419b3b0
commit b5b8357489

View File

@ -126,7 +126,7 @@ public class AntoraAsciidocAttributes {
private void addSpringDataDependencyVersion(Map<String, String> attributes, String name, String artifactId) {
String version = this.dependencyVersions.get("org.springframework.data:" + artifactId);
Assert.notNull(version, () -> "No version found for Spring Data artificat " + artifactId);
Assert.notNull(version, () -> "No version found for Spring Data artifact " + artifactId);
attributes.put("version-" + name, version);
}