aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-03-20 12:25:05 +0000
committerAleksey Kladov <[email protected]>2019-03-20 12:25:05 +0000
commitac6749d18ca9f32eedbc88a68ec41dbb3342a1e1 (patch)
tree0656e43813f5e6042e6c6689ecd423bd5431aeab
parent728990a5807882276e34f1f581f70a59f61ba991 (diff)
fixes
-rw-r--r--docs/user/README.md2
-rw-r--r--docs/user/features.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/user/README.md b/docs/user/README.md
index 8de46981b..439c4e6ae 100644
--- a/docs/user/README.md
+++ b/docs/user/README.md
@@ -74,4 +74,4 @@ Installation:
74[ra-emacs-lsp.el](https://github.com/rust-analyzer/rust-analyzer/blob/69ee5c9c5ef212f7911028c9ddf581559e6565c3/editors/emacs/ra-emacs-lsp.el) 74[ra-emacs-lsp.el](https://github.com/rust-analyzer/rust-analyzer/blob/69ee5c9c5ef212f7911028c9ddf581559e6565c3/editors/emacs/ra-emacs-lsp.el)
75to load path and require it in `init.el` 75to load path and require it in `init.el`
76* run `lsp` in a rust buffer 76* run `lsp` in a rust buffer
77* (Optionally) bind commands like `join-lines` or `extend-selection` to keys 77* (Optionally) bind commands like `rust-analyzer-join-lines` or `rust-analyzer-extend-selection` to keys
diff --git a/docs/user/features.md b/docs/user/features.md
index 90f182f35..b9d2aa84f 100644
--- a/docs/user/features.md
+++ b/docs/user/features.md
@@ -153,7 +153,7 @@ impl std::fmt::Debug<|> for Foo {
153} 153}
154 154
155// after: 155// after:
156use std::fmt::Debug 156use std::fmt::Debug;
157 157
158impl Debug<|> for Foo { 158impl Debug<|> for Foo {
159} 159}