fix typos, From: Clint Adams <schizo@debian.org>

This commit is contained in:
tg 2009-10-02 16:59:53 +00:00
parent ff8b75f46f
commit c0589fd329

View File

@ -1,4 +1,4 @@
# $MirOS: src/bin/mksh/check.t,v 1.312 2009/09/29 12:28:12 tg Exp $
# $MirOS: src/bin/mksh/check.t,v 1.313 2009/10/02 16:59:53 tg Exp $
# $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
@ -222,7 +222,7 @@ expected-stdout:
---
name: arith-ternary-prec-1
description:
Check precidance of ternary operator vs assignment
Check precedence of ternary operator vs assignment
stdin:
typeset -i x=2
y=$((1 ? 20 : x+=2))
@ -232,7 +232,7 @@ expected-stderr-pattern:
---
name: arith-ternary-prec-2
description:
Check precidance of ternary operator vs assignment
Check precedence of ternary operator vs assignment
stdin:
typeset -i x=2
echo $((0 ? x+=2 : 20))