Skip to content

Commit

Permalink
Improve formatting of azip docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jturner314 committed Sep 3, 2019
1 parent d319e2f commit f806e06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/zip/zipmacro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
/// Is equivalent to:
///
/// ```rust,ignore
/// Zip::from(&mut a).and(&b).and(&c).apply(|a, &b, &c| *a = b + c);
/// Zip::from(&mut a).and(&b).and(&c).apply(|a, &b, &c| {
/// *a = b + c
/// });
/// ```
///
/// The syntax is either
Expand Down

0 comments on commit f806e06

Please sign in to comment.