summaryrefslogtreecommitdiff
path: root/src/unistd.rs
diff options
context:
space:
mode:
authorRyan Zoeller <rtzoeller@rtzoeller.com>2022-10-12 20:36:15 -0500
committerRyan Zoeller <rtzoeller@rtzoeller.com>2022-10-12 20:36:15 -0500
commitf28262564da77c0746d0e98312a1aa24979055fb (patch)
tree544e2e99dd3d58110fa900ca149ba0c572e20b67 /src/unistd.rs
parent4d4bfefe7d18afc1c3f3c02d3bbdb78473ac110f (diff)
downloadnix-f28262564da77c0746d0e98312a1aa24979055fb.zip
fix '<newline>' being interpreted as html
Diffstat (limited to 'src/unistd.rs')
-rw-r--r--src/unistd.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd.rs b/src/unistd.rs
index 3b0df74f..2197d2bc 100644
--- a/src/unistd.rs
+++ b/src/unistd.rs
@@ -2207,7 +2207,7 @@ pub enum SysconfVar {
/// Unless otherwise noted, the maximum length, in bytes, of a utility's
/// input line (either standard input or another file), when the utility is
/// described as processing text files. The length includes room for the
- /// trailing <newline>.
+ /// trailing newline.
#[cfg(not(any(target_os = "redox", target_os = "haiku")))]
#[cfg_attr(docsrs, doc(cfg(all())))]
LINE_MAX = libc::_SC_LINE_MAX,