Skip to content

Commit

Permalink
Fixed small documentation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
dragostis committed Jun 25, 2016
1 parent 67fe9bc commit d5abe40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,10 @@
//! `addition` and `multiplication` are virtually identical:
//!
//! * match the `addition`/`multiplication` `Token` without using it
//! * recursively process the left-hand-side by calling `main`
//! * recursively process the left-hand-side by calling `compute`
//! * use the `sign` `Token` without capturing its `&str` value
//! * recursively process the right-hand-side by calling `main`
//! * inside the block match `sign` and return the appropriate result
//! * recursively process the right-hand-side by calling `compute`
//! * match `sign` inside the block and return the appropriate result
//!
//! ```ignore
//! (_: addition, left: compute(), sign, right: compute()) => {
Expand Down

0 comments on commit d5abe40

Please sign in to comment.