diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-01-14 21:28:49 +0000 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-01-14 21:29:29 +0000 |
commit | 6a04f5b3207fc4d1ab090e1fd7b6ff72ede39230 (patch) | |
tree | 1126c039df11fd733ea422614f1e356dc39b1aa2 | |
parent | 8b7ead271f963b7e5fa3ddeedf59ac8a0754df4a (diff) | |
download | zsh-6a04f5b3207fc4d1ab090e1fd7b6ff72ede39230.tar.gz zsh-6a04f5b3207fc4d1ab090e1fd7b6ff72ede39230.tar.xz zsh-6a04f5b3207fc4d1ab090e1fd7b6ff72ede39230.zip |
unposted: fix error in README
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | README | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index c6d38671c..a1046f27b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,10 @@ in example style patterns to assure fixed strings can't match the wrong field positions +2015-01-13 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * unposted: README: fix deliberate error in previous update. + 2015-01-13 Peter Stephenson <p.stephenson@samsung.com> * 34260: Eric Cook: Completion/Unix/Command/_ip: relax diff --git a/README b/README index 218f27d58..4d2b6c17e 100644 --- a/README +++ b/README @@ -69,12 +69,10 @@ Old behaviour: % integer var % print $(( var = 5.5 / 2.0 )) -2.2000000000000002 +2.75 % print $var 2 -(the actual rounding error may vary). - New behaviour: % integer var |