Fix typos and formatting in the sumstats docs

This commit is contained in:
Daniel Thayer 2013-10-10 23:15:12 -05:00
parent 3812716ace
commit 0753853726
6 changed files with 36 additions and 34 deletions

View file

@ -5,12 +5,12 @@ module SumStats;
export {
redef enum Calculation += {
## Keep last X observations in a queue
## Keep last X observations in a queue.
LAST
};
redef record Reducer += {
## number of elements to keep.
## Number of elements to keep.
num_last_elements: count &default=0;
};