Skip to content

Commit

Permalink
Merge pull request #40946 from Seungpang
Browse files Browse the repository at this point in the history
* pr/40946:
  Fix typo in AntoraAsciidocAttributes class

Closes gh-40946
  • Loading branch information
scottfrederick committed May 29, 2024
2 parents 802419b + b5b8357 commit ddcb30c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private void addSpringDataDependencyVersion(Map<String, String> attributes, Stri

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);
}

Expand Down

0 comments on commit ddcb30c

Please sign in to comment.