Skip to content

Commit

Permalink
Fix documentation links
Browse files Browse the repository at this point in the history
Closes gh-1627
  • Loading branch information
mhalbritter committed Oct 24, 2024
1 parent 356d151 commit c5a7c85
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 109 deletions.
3 changes: 1 addition & 2 deletions USING.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
:spring-boot-docs: https://docs.spring.io/spring-boot/docs/current/reference/html
= User Guide

If you're wondering how to use https://start.spring.io or what features are available,
Expand Down Expand Up @@ -190,7 +189,7 @@ Refer to the documentation of your favorite IDE for more details.
The `spring` command line tool defines an `init` command that allows you to create a
project using Spring Initializr. It defaults to start.spring.io.

Check {spring-boot-docs}/spring-boot-cli.html#cli-init[the documentation for more details].
Check https://docs.spring.io/spring-boot/cli/index.html[the documentation for more details].



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void customize(HelpDocument document, Build build) {
String frameworkVersion = resolve.get("org.springframework:spring-core");
String versionToUse = (frameworkVersion != null) ? frameworkVersion : "current";
String href = String.format(
"https://docs.spring.io/spring/docs/%s/spring-framework-reference/languages.html#coroutines",
"https://docs.spring.io/spring-framework/reference/%s/languages/kotlin/coroutines.html",
versionToUse);
document.gettingStarted()
.addReferenceDocLink(href, "Coroutines section of the Spring Framework Documentation");
Expand Down
Loading

0 comments on commit c5a7c85

Please sign in to comment.