diff options
author | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2019-06-02 06:16:38 +0000 |
---|---|---|
committer | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2019-06-02 06:16:38 +0000 |
commit | 4dee0340bcb36e22f2cfdfdbba20d40fbb6f41a7 (patch) | |
tree | b5d27a565485acf934910312a919cd2f7c22395f | |
parent | 47fb4af42fa99dfae64114f7045056ee62c80e6c (diff) |
Fix incorrect character escape.
From Stephen Gregoratto; thanks!
-rw-r--r-- | usr.bin/printf/printf.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/printf/printf.1 b/usr.bin/printf/printf.1 index ffe32427a39..796b2e98616 100644 --- a/usr.bin/printf/printf.1 +++ b/usr.bin/printf/printf.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.1,v 1.31 2018/03/13 14:53:05 jmc Exp $ +.\" $OpenBSD: printf.1,v 1.32 2019/06/02 06:16:37 bentley Exp $ .\" .\" Copyright (c) 1989, 1990 The Regents of the University of California. .\" All rights reserved. @@ -32,7 +32,7 @@ .\" .\" from: @(#)printf.1 5.11 (Berkeley) 7/24/91 .\" -.Dd $Mdocdate: March 13 2018 $ +.Dd $Mdocdate: June 2 2019 $ .Dt PRINTF 1 .Os .Sh NAME @@ -95,7 +95,7 @@ Write a <carriage return> character. Write a <tab> character. .It Cm \ev Write a <vertical tab> character. -.It Cm \e\' +.It Cm \e\(aq Write a <single quote> character. .It Cm \e\e Write a backslash character. |