about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2018-03-24 23:41:34 -0400
committerPhlosioneer <mattmdrr2@gmail.com>2018-03-24 23:41:34 -0400
commitefd04423c3300d79d0430c78602545ddf5b7f415 (patch)
tree8553f3ff47efee5015b2a7896ab659bee1a955ec /src/libstd
parent1af952cc490b62a1f43f48c9fd809cf99aff2630 (diff)
downloadrust-efd04423c3300d79d0430c78602545ddf5b7f415.tar.gz
rust-efd04423c3300d79d0430c78602545ddf5b7f415.zip
Add backticks
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/net/addr.rs4
-rw-r--r--src/libstd/net/ip.rs6
-rw-r--r--src/libstd/time.rs4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/libstd/net/addr.rs b/src/libstd/net/addr.rs
index 57efc3095fc..bc2c9f522d3 100644
--- a/src/libstd/net/addr.rs
+++ b/src/libstd/net/addr.rs
@@ -64,7 +64,7 @@ pub enum SocketAddr {
 ///
 /// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
 ///
-/// The size of a SocketAddrV4 struct may vary depending on the target operating
+/// The size of a `SocketAddrV4` struct may vary depending on the target operating
 /// system.
 ///
 /// [IETF RFC 793]: https://tools.ietf.org/html/rfc793
@@ -94,7 +94,7 @@ pub struct SocketAddrV4 { inner: c::sockaddr_in }
 ///
 /// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
 ///
-/// The size of a SocketAddrV6 struct may vary depending on the target operating
+/// The size of a `SocketAddrV6` struct may vary depending on the target operating
 /// system.
 ///
 /// [IETF RFC 2553, Section 3.3]: https://tools.ietf.org/html/rfc2553#section-3.3
diff --git a/src/libstd/net/ip.rs b/src/libstd/net/ip.rs
index 67b9e7a2f9d..031fae6d59b 100644
--- a/src/libstd/net/ip.rs
+++ b/src/libstd/net/ip.rs
@@ -26,7 +26,7 @@ use sys_common::{AsInner, FromInner};
 /// This enum can contain either an [`Ipv4Addr`] or an [`Ipv6Addr`], see their
 /// respective documentation for more details.
 ///
-/// The size of an IpAddr instance may vary depending on the target operating
+/// The size of an `IpAddr` instance may vary depending on the target operating
 /// system.
 ///
 /// [`Ipv4Addr`]: ../../std/net/struct.Ipv4Addr.html
@@ -64,7 +64,7 @@ pub enum IpAddr {
 ///
 /// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
 ///
-/// The size of an Ipv4Addr struct may vary depending on the target operating
+/// The size of an `Ipv4Addr` struct may vary depending on the target operating
 /// system.
 ///
 /// [IETF RFC 791]: https://tools.ietf.org/html/rfc791
@@ -99,7 +99,7 @@ pub struct Ipv4Addr {
 ///
 /// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
 ///
-/// The size of an Ipv6Addr struct may vary depending on the target operating
+/// The size of an `Ipv6Addr` struct may vary depending on the target operating
 /// system.
 ///
 /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
diff --git a/src/libstd/time.rs b/src/libstd/time.rs
index 4e08301fe05..7256ac43e27 100644
--- a/src/libstd/time.rs
+++ b/src/libstd/time.rs
@@ -49,7 +49,7 @@ pub use core::time::Duration;
 /// allows measuring the duration between two instants (or comparing two
 /// instants).
 ///
-/// The size of an Instant struct may vary depending on the target operating
+/// The size of an `Instant` struct may vary depending on the target operating
 /// system.
 ///
 /// Example:
@@ -91,7 +91,7 @@ pub struct Instant(time::Instant);
 /// fixed point in time, a `SystemTime` can be converted to a human-readable time,
 /// or perhaps some other string representation.
 ///
-/// The size of a SystemTime struct may vary depending on the target operating
+/// The size of a `SystemTime` struct may vary depending on the target operating
 /// system.
 ///
 /// [`Instant`]: ../../std/time/struct.Instant.html