diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-05-07 15:35:19 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-05-07 15:35:19 -0400 |
| commit | aa63f54e3752382f59cc68aba8dae0c0d7bdda5a (patch) | |
| tree | fdc974713887db2abee0347b0971e66ed1a9ed52 /src/libstd/net | |
| parent | 1ce94053800c192f2d9c7126dc26297cbbfc73ff (diff) | |
| parent | 26eb2bef2591ddb4cdf45d256cdcfa7c7353b0fc (diff) | |
| download | rust-aa63f54e3752382f59cc68aba8dae0c0d7bdda5a.tar.gz rust-aa63f54e3752382f59cc68aba8dae0c0d7bdda5a.zip | |
Rollup merge of #33438 - birkenfeld:dup-words, r=steveklabnik
Fix some some duplicate words.
Diffstat (limited to 'src/libstd/net')
| -rw-r--r-- | src/libstd/net/ip.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/net/ip.rs b/src/libstd/net/ip.rs index adceee6d73e..01924198250 100644 --- a/src/libstd/net/ip.rs +++ b/src/libstd/net/ip.rs @@ -371,7 +371,7 @@ impl Ipv6Addr { } /// Returns true if this is an address reserved for documentation - /// This is defined to be 2001:db8::/32 in RFC RFC 3849 + /// This is defined to be 2001:db8::/32 in RFC 3849. pub fn is_documentation(&self) -> bool { (self.segments()[0] == 0x2001) && (self.segments()[1] == 0xdb8) } |
