Unnamed repository; edit this file 'description' to name the repository.
Merge #10315
10315: Fix title of User Manual page r=lnicola a=terrynsun Asciidoc uses the first line of a doc as the title, so you can't put comments before the heading. --- I had an old copy of the Manual page open and I noticed that the "User Manual" heading (and page title) had disappeared in the live version: ![image](https://user-images.githubusercontent.com/2858750/134455658-3885b754-9eae-4dca-a6d4-4b1453910850.png) With this change (and how it was a few days ago): ![image](https://user-images.githubusercontent.com/2858750/134455865-5acc7538-ccf8-4346-941f-3a5561b3181e.png) Co-authored-by: Terry Sun <[email protected]>
bors[bot] 2021-09-23
parent 075fe76 · parent 04e1d72 · commit 88a214f
-rw-r--r--docs/user/manual.adoc6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc
index 3cdfa8da22..0afca215ec 100644
--- a/docs/user/manual.adoc
+++ b/docs/user/manual.adoc
@@ -1,5 +1,3 @@
-// IMPORTANT: the master copy of this document lives in the https://github.com/rust-analyzer/rust-analyzer repository
-
= User Manual
:toc: preamble
:sectanchors:
@@ -8,6 +6,10 @@
:source-highlighter: rouge
:experimental:
+////
+IMPORTANT: the master copy of this document lives in the https://github.com/rust-analyzer/rust-analyzer repository
+////
+
At its core, rust-analyzer is a *library* for semantic analysis of Rust code as it changes over time.
This manual focuses on a specific usage of the library -- running it as part of a server that implements the
https://microsoft.github.io/language-server-protocol/[Language Server Protocol] (LSP).