From 95ea9d4a0064ebe2d7ce6f23029ade8687c473be Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Fri, 25 May 2012 21:51:24 +0100 Subject: [PATCH] fold: clarify utf8 behaviour in manpage --- fold.1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fold.1 b/fold.1 index 28f7d96..e9ed455 100644 --- a/fold.1 +++ b/fold.1 @@ -10,16 +10,16 @@ fold \- wrap lines to width .SH DESCRIPTION .B fold reads each file in sequence and prints its lines, broken such that no line -exceeds 80 characters. If no file is given, fold reads from stdin. +exceeds 80 UTF-8 characters. If no file is given, fold reads from stdin. .SH OPTIONS .TP .B \-b -counts bytes rather than columns. +counts bytes rather than characters. .TP .B \-s breaks only at spaces. .TP .BI \-w " width" -uses +breaks at .I width -columns instead of 80. +characters, instead of 80.