[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnuastro-commits] master df53400a: Book: Fixed typo in Conditional Oper
From: |
Mohammad Akhlaghi |
Subject: |
[gnuastro-commits] master df53400a: Book: Fixed typo in Conditional Operators section of documentation |
Date: |
Mon, 24 Apr 2023 15:42:29 -0400 (EDT) |
branch: master
commit df53400a9ab180faf7297cde0214e16d1e583a9b
Author: Bharat Bhandari <bharatbhandari1024@gmail.com>
Commit: Mohammad Akhlaghi <mohammad@akhlaghi.org>
Book: Fixed typo in Conditional Operators section of documentation
Until now, there was a typo in the Conditional Operators section of
the documentation where astarithmetic was misspelled as
astaithmetic.
With this commit, we have corrected the typo in the documentation.
This should make the documentation clearer and more helpful for new
users.
---
doc/gnuastro.texi | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/gnuastro.texi b/doc/gnuastro.texi
index 848b4afd..3785e217 100644
--- a/doc/gnuastro.texi
+++ b/doc/gnuastro.texi
@@ -18092,7 +18092,7 @@ $ astarithmetic image1.fits image2.fits lt
If only one operand is an image, then all the pixels will be compared with the
single value (number) of the other operand.
For example:
@example
-$ astaithmetic image1.fits 1000 lt
+$ astarithmetic image1.fits 1000 lt
@end example
Finally if both are numbers, then the output is also just one number (0 or 1).
@example
@@ -18104,33 +18104,33 @@ $ astarithmetic 4 5 lt
Less or equal: similar to @code{lt} (`less than' operator), but returning 1
when the second popped operand is smaller or equal to the first.
For example
@example
-$ astaithmetic image1.fits 1000 le
+$ astarithmetic image1.fits 1000 le
@end example
@item gt
Greater than: similar to @code{lt} (`less than' operator), but returning 1
when the second popped operand is greater than the first.
For example
@example
-$ astaithmetic image1.fits 1000 gt
+$ astarithmetic image1.fits 1000 gt
@end example
@item ge
Greater or equal: similar to @code{lt} (`less than' operator), but returning 1
when the second popped operand is larger or equal to the first.
For example
@example
-$ astaithmetic image1.fits 1000 ge
+$ astarithmetic image1.fits 1000 ge
@end example
@item eq
Equality: similar to @code{lt} (`less than' operator), but returning 1 when
the two popped operands are equal (to double precision floating point accuracy).
@example
-$ astaithmetic image1.fits 1000 eq
+$ astarithmetic image1.fits 1000 eq
@end example
@item ne
Non-Equality: similar to @code{lt} (`less than' operator), but returning 1
when the two popped operands are @emph{not} equal (to double precision floating
point accuracy).
@example
-$ astaithmetic image1.fits 1000 ne
+$ astarithmetic image1.fits 1000 ne
@end example
@item and
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gnuastro-commits] master df53400a: Book: Fixed typo in Conditional Operators section of documentation,
Mohammad Akhlaghi <=