Better docs for write_stage

This commit is contained in:
Greg Fitzgerald 2018-06-06 11:24:24 -06:00
parent 6ff9b27f8e
commit 5aaa38bcaf
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,6 @@
//! The `entry_writer` module helps implement the TPU's write stage.
//! The `entry_writer` module helps implement the TPU's write stage. It
//! writes entries to the given writer, which is typically a file or
//! stdout, and then sends the Entry to its output channel.
use bank::Bank;
use entry::Entry;

View File

@ -1,4 +1,6 @@
//! The `write_stage` module implements write stage of the RPU.
//! The `write_stage` module implements the TPU's write stage. It
//! writes entries to the given writer, which is typically a file or
//! stdout, and then sends the Entry to its output channel.
use bank::Bank;
use entry::Entry;