Fix spelling error in binary

- Error fixed in write of the code.
This commit is contained in:
Mike Molina 2024-02-18 21:51:35 -05:00
parent 30e14f685e
commit 4cde42c7f1
4 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@ static ColHdr col[] = {
{MISC_COL, "SnLght", "Light travel time from Sun"},
{MISC_COL, "Uranom", "Volume and page number in Uranometria"},
{MISC_COL, "Uran2k", "Volume and page number in Uranometria 2000"},
{MISC_COL, "MillSA", "Volume and page number in Millenium Star Atlas"},
{MISC_COL, "MillSA", "Volume and page number in Millennium Star Atlas"},
{RISET_COL, "RisTm", "Rise time, today"},
{RISET_COL, "RisAz", "Rise azimuth, today"},

View File

@ -1753,7 +1753,7 @@ number of object's location in the new Uranometria 2000 edition.</li>
</ul>
<ul>
<li><span style="font-weight: bold;">MillSA</span> Volume and Page
number of object's location in the Millenium Star Atlas, published
number of object's location in the Millennium Star Atlas, published
by Sky Publishing Corp.</li>
</ul>
Section two controls information related to rising, transitting, and

View File

@ -229,7 +229,7 @@ ir_create()
s2_w = XmCreateToggleButton (irshell_w, "S1TB", args, n);
XtAddCallback (s2_w, XmNvalueChangedCallback, reg_cb, NULL);
set_xmstring (s2_w, XmNlabelString,
"Image to be registed is loaded, now click same 2 stars");
"Image to be registered is loaded, now click same 2 stars");
XtManageChild (s2_w);
/* labels for second set of reference stars */

View File

@ -98,7 +98,7 @@ typedef struct {
char *desc; /* description */
char ura[ATLASLEN]; /* Uranometria page number */
char u2k[ATLASLEN]; /* Uranometria 200 page number */
char msa[ATLASLEN]; /* Millenium Star Atlas page number */
char msa[ATLASLEN]; /* Millennium Star Atlas page number */
} ObjInfo;
/* handy "no rise/set" test */
@ -139,7 +139,7 @@ static SortInfo sinfo[] = {
{"Urano", "Uranometria", sort_ura},
{"Uran2k", "Uranom 2000", sort_u2k},
{"MillSA", "Millenium", sort_msa},
{"MillSA", "Millennium", sort_msa},
{"RisTm", "Rise time", sort_risetm},
{"RisAz", "Rise azimuth", sort_riseaz},
{"TrnTm", "Transit time", sort_trantm},