Fixed grammar errors on line 664 in Bash-Prog-Intro-HOWTO.sgml

This commit is contained in:
Thomas Jaensch 2016-04-01 10:14:31 -04:00
parent e63c2dffd7
commit e262a20568
1 changed files with 1 additions and 1 deletions

View File

@ -661,7 +661,7 @@ Misc
<P>
<P> If you need to use fractions, or more math or you just want it, you
can use bc to evaluate arithmetic expressions.
<P> if i ran "echo $[3/4]" at the command prompt, it would return 0
<P> If I ran "echo $[3/4]" at the command prompt, it would return 0
because bash only uses integers when answering. If you ran
"echo 3/4|bc -l", it would properly return 0.75.
</sect1>