docstring for mbe module

This commit is contained in:
Aleksey Kladov 2019-09-22 20:36:35 +03:00
parent e30c5166db
commit 636b3543c2

View file

@ -1,3 +1,8 @@
//! This module implements declarative macros: old `macro_rules` and the newer
//! `macro`. Declarative macros are also known as "macro by example", and that's
//! why we call this module `mbe`. For external documentation, prefer the
//! official terminology: "declarative macros".
crate mod transcribe;
crate mod macro_check;
crate mod macro_parser;