Some docs

This commit is contained in:
Aleksey Kladov 2020-02-27 11:07:26 +01:00
parent 520b0c8faf
commit 364162f875
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) struct KindsSrc<'a> {
pub(crate) punct: &'a [(&'a str, &'a str)], pub(crate) punct: &'a [(&'a str, &'a str)],
pub(crate) keywords: &'a [&'a str], pub(crate) keywords: &'a [&'a str],

View file

@ -1,3 +1,5 @@
//! Generates `assists.md` documentation.
use std::{fs, path::Path}; use std::{fs, path::Path};
use crate::{ 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 not_bash;
pub mod install; pub mod install;

View file

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