Skip to content

Commit

Permalink
Merge pull request serde-rs#1561 from BurntSushi/ag/update-i128-docs
Browse files Browse the repository at this point in the history
Update docs for serde_if_integer128
  • Loading branch information
dtolnay committed Jul 1, 2019
2 parents 1c1eeca + f9fdd60 commit 0574f1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions serde/src/integer128.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/// Conditional compilation depending on whether Serde is built with support for
/// 128-bit integers.
///
/// Data formats that wish to support Rust compiler versions older than 1.26 may
/// place the i128 / u128 methods of their Serializer and Deserializer behind
/// this macro.
/// Data formats that wish to support Rust compiler versions older than 1.26
/// (or targets that lack 128-bit integers) may place the i128 / u128 methods
/// of their Serializer and Deserializer behind this macro.
///
/// Data formats that require a minimum Rust compiler version of at least 1.26
/// do not need to bother with this macro and may assume support for 128-bit
/// integers.
/// Data formats that require a minimum Rust compiler version of at least 1.26,
/// or do not target platforms that lack 128-bit integers, do not need to
/// bother with this macro and may assume support for 128-bit integers.
///
/// ```edition2018
/// # use serde::private::ser::Error;
Expand Down

0 comments on commit 0574f1e

Please sign in to comment.