Fix a couple of spelling errors in binary (#87)

This commit is contained in:
Mike Molina 2024-02-20 08:08:18 -05:00 committed by GitHub
parent 185f4b0202
commit 534a5cd7dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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, "SnLght", "Light travel time from Sun"},
{MISC_COL, "Uranom", "Volume and page number in Uranometria"}, {MISC_COL, "Uranom", "Volume and page number in Uranometria"},
{MISC_COL, "Uran2k", "Volume and page number in Uranometria 2000"}, {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, "RisTm", "Rise time, today"},
{RISET_COL, "RisAz", "Rise azimuth, 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>
<ul> <ul>
<li><span style="font-weight: bold;">MillSA</span> Volume and Page <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> by Sky Publishing Corp.</li>
</ul> </ul>
Section two controls information related to rising, transitting, and 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); s2_w = XmCreateToggleButton (irshell_w, "S1TB", args, n);
XtAddCallback (s2_w, XmNvalueChangedCallback, reg_cb, NULL); XtAddCallback (s2_w, XmNvalueChangedCallback, reg_cb, NULL);
set_xmstring (s2_w, XmNlabelString, 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); XtManageChild (s2_w);
/* labels for second set of reference stars */ /* labels for second set of reference stars */

View File

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