Skip to content

Commit b677abc

Browse files
committed
Fix links
1 parent 71fbb7a commit b677abc

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tidy pretty format f:
2222
docs:
2323
npm run docs:build
2424
mvn javadoc:javadoc
25-
cp -R target/site/apidocs xdocs/.vitepress/dist/
25+
cp -R target/site/apidocs docs/.vitepress/dist/
2626
npm run deploy-docs
2727

2828
docs-dev:

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ started quickly with Query/Response.
9898

9999
=== Request For Discussion (RFD) & Architectural Design Records (ADR)
100100

101-
Under the link:./xdocs[docs] folder there are link:./xdocs/rfds[RFD] documents,
101+
Under the link:./docs[docs] folder there are link:./docs/rfd[RFD] documents,
102102
which provide a way for anyone to introduce ideas and trigger a discussion, as
103-
well as link:./xdocs/adrs[ADR] documents that describe which important decisions
103+
well as link:./docs/adr[ADR] documents that describe which important decisions
104104
were made, and why. Read more in the
105105
https://olle.github.io/query-response-spring-amqp/[online documentation].
106106

docs/adr/adrs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ decision, and consequences.
2323
`adr/XXX-title`, where `XXX` is the next available number and `title` is a
2424
very short description of the decision.
2525

26-
2. Add a new ADR file in the `xdocs/adr` directory using the available template.
26+
2. Add a new ADR file in the `docs/adr` directory using the available template.
2727
Ensure that the file follows the naming convention `ADR-XXX-title.md`, using
2828
the same number as the branch name.
2929

30-
3. Update the `xdocs/adr/adrs.md` file to include a link to the new ADR file.
30+
3. Update the `docs/adr/adrs.md` file to include a link to the new ADR file.
3131

3232
4. Submit the PR for review.

docs/rfd/rfds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ proposal, and consequences.
2222
`rfd/XXX-title`, where `XXX` is the next available number and `title` is a
2323
very short description of the proposal.
2424

25-
2. Add a new RFD file in the `xdocs/rfd` directory using the available template.
25+
2. Add a new RFD file in the `docs/rfd` directory using the available template.
2626
Ensure that the file follows the naming convention `RFD-XXX-title.md`, using
2727
the same number as the branch name.
2828

29-
3. Update the `xdocs/rfd/rfds.md` file to include a link to the new RFD file.
29+
3. Update the `docs/rfd/rfds.md` file to include a link to the new RFD file.
3030

3131
4. Submit the PR for review.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"vitepress": "^1.2.3"
77
},
88
"scripts": {
9-
"deploy-docs": "gh-pages -d xdocs/.vitepress/dist",
10-
"docs:dev": "vitepress dev xdocs",
11-
"docs:build": "vitepress build xdocs",
12-
"docs:preview": "vitepress preview xdocs"
9+
"deploy-docs": "gh-pages -d docs/.vitepress/dist",
10+
"docs:dev": "vitepress dev docs",
11+
"docs:build": "vitepress build docs",
12+
"docs:preview": "vitepress preview docs"
1313
}
1414
}

0 commit comments

Comments
 (0)