Actions
Bug #8003
closedman page typos
Start date:
2017-03-25
Due date:
% Done:
100%
Estimated time:
Difficulty:
Bite-size
Tags:
Gerrit CR:
Description
While reading over mac(9E), I noticed a small typo. Then I used the following script to identify a few similar cases:
find usr/src/man/ -type f -exec grep -E "^\.Sy\s[A-Z_]+\s?.?$" {} \; | cut -d" " -f2 | while read line
do
COUNT=$(rg --no-heading $line $PWD | wc -l)
if [ $COUNT -lt "2" ]
then
echo $line
fi
done
Updated by Electric Monk about 5 years ago
- Status changed from In Progress to Closed
- % Done changed from 90 to 100
git commit c71d194a355d17467b4730bbc641c3a40bfb68fd
commit c71d194a355d17467b4730bbc641c3a40bfb68fd Author: Dillon Amburgey <dillona@dillona.com> Date: 2017-03-28T23:59:59.000Z 8003 man page typos Reviewed by: Yuri Pankov <yuri.pankov@gmail.com> Reviewed by: Toomas Soome <tsoome@me.com> Reviewed by: Dale Ghent <daleg@elemental.org> Approved by: Robert Mustacchi <rm@joyent.com>
Actions