From 04e1d72354cee7003310e2e190f81193d1a498e5 Mon Sep 17 00:00:00 2001 From: Terry Sun Date: Wed, 22 Sep 2021 21:37:17 -0700 Subject: [PATCH] Fix title of User Manual page Asciidoc uses the first line of a doc as the title, so you can't put comments before the heading. --- docs/user/manual.adoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index 3cdfa8da228..0afca215ecb 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).