Skip to content

Commit d7071ea

Browse files
bors[bot]matklad
andauthored
Merge #4668
4668: Rename user/readme.adoc -> user/manual.adoc r=matklad a=matklad bors r+ πŸ€– Co-authored-by: Aleksey Kladov <[email protected]>
2 parents 09df51d + 5a2f454 commit d7071ea

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

β€Ždocs/user/readme.adocβ€Ž renamed to β€Ždocs/user/manual.adocβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ https://microsoft.github.io/language-server-protocol/[Language Server Protocol]
1919
The LSP allows various code editors, like VS Code, Emacs or Vim, to implement semantic features like completion or goto definition by talking to an external language server process.
2020

2121
To improve this document, send a pull request against
22-
https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/readme.adoc[this file].
22+
https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/manual.adoc[this file].
2323

2424
If you have questions about using rust-analyzer, please ask them in the https://users.rust-lang.org/c/ide/14["`IDEs and Editors`"] topic of Rust users forum.
2525

β€Žxtask/src/lib.rsβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,11 @@ Release: release:{}[]
191191
let path = changelog_dir.join(format!("{}-changelog-{}.adoc", today, changelog_n));
192192
fs2::write(&path, &contents)?;
193193

194-
fs2::copy(project_root().join("./docs/user/readme.adoc"), website_root.join("manual.adoc"))?;
194+
for &adoc in ["manual.adoc", "generated_features.adoc"].iter() {
195+
let src = project_root().join("./docs/user/").join(adoc);
196+
let dst = website_root.join(adoc);
197+
fs2::copy(src, dst)?;
198+
}
195199

196200
let tags = run!("git tag --list"; echo = false)?;
197201
let prev_tag = tags.lines().filter(|line| is_release_tag(line)).last().unwrap();

0 commit comments

Comments
Β (0)