mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Some docs
This commit is contained in:
parent
520b0c8faf
commit
364162f875
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