3342: Some docs r=matklad a=matklad



bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2020-02-27 10:07:51 +00:00 committed by GitHub
commit e4a28312c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 1 deletions

View file

@ -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],

View file

@ -1,3 +1,5 @@
//! Generates `assists.md` documentation.
use std::{fs, path::Path};
use crate::{

View file

@ -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;

View file

@ -1,4 +1,5 @@
//! A bad shell -- small cross platform module for writing glue code
use std::{
cell::RefCell,
env,