diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2018-01-03 17:04:13 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2018-01-03 17:04:13 +0000 |
commit | 1796f7b1ff301c81fea3b1c2aec46cf1b1333955 (patch) | |
tree | 19d14c271d95be349c1697e5209e936f6327f8fc /usr.bin/morse | |
parent | af317aa4e5f41dc79638bf7e65993a78105c4c54 (diff) | |
download | src-1796f7b1ff301c81fea3b1c2aec46cf1b1333955.tar.gz src-1796f7b1ff301c81fea3b1c2aec46cf1b1333955.zip |
morse(6): fix two typod
Notes
Notes:
svn path=/head/; revision=327521
Diffstat (limited to 'usr.bin/morse')
-rw-r--r-- | usr.bin/morse/morse.6 | 2 | ||||
-rw-r--r-- | usr.bin/morse/morse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/morse/morse.6 b/usr.bin/morse/morse.6 index 94645bbf5c7f..496a7fd6e5b5 100644 --- a/usr.bin/morse/morse.6 +++ b/usr.bin/morse/morse.6 @@ -85,7 +85,7 @@ Similar to .Fl p , but use the RTS line of .Ar device -(which must by a TTY device) +(which must be a TTY device) in order to emit the morse code. .It Fl e Echo each character before it is sent, used together with either diff --git a/usr.bin/morse/morse.c b/usr.bin/morse/morse.c index 4f0fe6b84071..36e439dc7436 100644 --- a/usr.bin/morse/morse.c +++ b/usr.bin/morse/morse.c @@ -155,7 +155,7 @@ static const struct morsetab iso8859_1tab[] = { {'\350', "..-.."}, /* è */ {'\351', "..-.."}, /* é */ {'\352', "-..-."}, /* ê */ - {'\361', "--.--"}, /* n */ + {'\361', "--.--"}, /* ñ */ {'\366', "---."}, /* ö */ {'\374', "..--"}, /* ü */ |