mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 01:38:13 +00:00
Merge #3342
3342: Some docs r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
e4a28312c4
4 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
//! Defines input for code generation process.
|
||||
|
||||
pub(crate) struct KindsSrc<'a> {
|
||||
pub(crate) punct: &'a [(&'a str, &'a str)],
|
||||
pub(crate) keywords: &'a [&'a str],
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
//! Generates `assists.md` documentation.
|
||||
|
||||
use std::{fs, path::Path};
|
||||
|
||||
use crate::{
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
//! FIXME: write short doc here
|
||||
//! Support library for `cargo xtask` command.
|
||||
//!
|
||||
//! See https://github.com/matklad/cargo-xtask/
|
||||
|
||||
pub mod not_bash;
|
||||
pub mod install;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//! A bad shell -- small cross platform module for writing glue code
|
||||
|
||||
use std::{
|
||||
cell::RefCell,
|
||||
env,
|
||||
|
|
Loading…
Reference in a new issue