Skip to content

Commit 1af952c

Browse files
committed
Remove StdioRaw doc additions, add backticks
1 parent e63b1a0 commit 1af952c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/libstd/io/stdio.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,18 @@ thread_local! {
3030
///
3131
/// This handle is not synchronized or buffered in any fashion. Constructed via
3232
/// the `std::io::stdio::stdin_raw` function.
33-
///
34-
/// The size of a StdinRaw struct may vary depending on the target operating
35-
/// system.
3633
struct StdinRaw(stdio::Stdin);
3734

3835
/// A handle to a raw instance of the standard output stream of this process.
3936
///
4037
/// This handle is not synchronized or buffered in any fashion. Constructed via
4138
/// the `std::io::stdio::stdout_raw` function.
42-
///
43-
/// The size of a StdoutRaw struct may vary depending on the target operating
44-
/// system.
4539
struct StdoutRaw(stdio::Stdout);
4640

4741
/// A handle to a raw instance of the standard output stream of this process.
4842
///
4943
/// This handle is not synchronized or buffered in any fashion. Constructed via
5044
/// the `std::io::stdio::stderr_raw` function.
51-
///
52-
/// The size of a StderrRaw struct may vary depending on the target operating
53-
/// system.
5445
struct StderrRaw(stdio::Stderr);
5546

5647
/// Constructs a new raw handle to the standard input of this process.

src/libstd/net/addr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use slice;
2828
/// as possibly some version-dependent additional information. See [`SocketAddrV4`]'s and
2929
/// [`SocketAddrV6`]'s respective documentation for more details.
3030
///
31-
/// The size of a SocketAddr instance may vary depending on the target operating
31+
/// The size of a `SocketAddr` instance may vary depending on the target operating
3232
/// system.
3333
///
3434
/// [IP address]: ../../std/net/enum.IpAddr.html

0 commit comments

Comments
 (0)