Skip to content

Commit

Permalink
typofixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-w committed Dec 22, 2024
1 parent 7885910 commit 4593d91
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
uses: codespell-project/actions-codespell@v2
with:
# ignore the config/.../crd.go file as it's generated binary data that is edited elswhere.
skip: .git,*.ttf,*.jpg,*.png,*.po,*.pot,*.utf8,*.pdf,*.dat,*.svg,./src/external,./plugins/RemoteControl/webroot/js,./src/core/planetsephems,./data/*,./scripts/*
skip: .git,*.ttf,*.jpg,*.png,*.po,*.pot,*.utf8,*.pdf,*.dat,*.svg,*.json,*.tsv,*.isl,./src/external,./plugins/RemoteControl/webroot/js,./src/core/planetsephems,./data/*,./scripts/*,./skycultures/*
check_filenames: true
ignore_words_list: NED,ned,anonymus,anser,dout,ect,empress,fo,inout,lod,mane,nam,nd,ned,normaly,parana,regio,sav,ser,sting,subtiles,te,tesselate,tesselated,tesselation,tesselates,tht,ue
ignore_words_list: NED,ned,anonymus,anser,dout,ect,empress,fo,inout,lod,mane,nam,nd,ned,normaly,parana,regio,sav,ser,sting,subtiles,te,tesselate,tesselated,tesselation,tesselates,tht,ue,updDate,AAS,sme,shs,delt,fpt,leapYear,tha,bu,aFile,indexS,functionsS,compileTime,Shepard,EYt,Eyt,sRing,sOm
4 changes: 2 additions & 2 deletions plugins/RemoteControl/src/qtwebapp/httpserver/httprequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void HttpRequest::parseMultiPartFile()
while (!tempFile.atEnd() && !finished && !tempFile.error())
{
#ifdef SUPERVERBOSE
qDebug("HttpRequest: reading multpart headers");
qDebug("HttpRequest: reading multipart headers");
#endif
QByteArray fieldName;
QByteArray fileName;
Expand Down Expand Up @@ -443,7 +443,7 @@ void HttpRequest::parseMultiPartFile()
}

#ifdef SUPERVERBOSE
qDebug("HttpRequest: reading multpart data");
qDebug("HttpRequest: reading multipart data");
#endif
QTemporaryFile* uploadedFile=Q_NULLPTR;
QByteArray fieldValue;
Expand Down
2 changes: 1 addition & 1 deletion plugins/TelescopeControl/src/TelescopeClient.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class TelescopeClient : public QObject, public StelObject
//! - PlainText
//! @param core the StelCore object
//! @param flags a set of InfoStringGroup items to include in the return value.
//! @return a QString containing an HMTL encoded description of the Telescope.
//! @return a QString containing an HTML encoded description of the Telescope.
QString getInfoString(const StelCore* core, const InfoStringGroup& flags) const override;
QString getType(void) const override {return TELESCOPECLIENT_TYPE;}
QString getObjectType(void) const override {return N_("telescope");}
Expand Down
2 changes: 1 addition & 1 deletion src/core/modules/Nebula.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ friend class NebulaMgr;
//! - PlainText
//! @param core the StelCore object
//! @param flags a set of InfoStringGroup items to include in the return value.
//! @return a QString containing an HMTL encoded description of the Nebula.
//! @return a QString containing an HTML encoded description of the Nebula.
QString getInfoString(const StelCore *core, const InfoStringGroup& flags) const override;
//! In addition to the entries from StelObject::getInfoMap(), Nebula objects provide
//! - bmag (photometric B magnitude. 99 if unknown)
Expand Down
2 changes: 1 addition & 1 deletion src/core/modules/Planet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Planet : public StelObject
//! @note subclasses should prefer to override only the component infostrings getInfoString...(), not this method!
//! @param core the StelCore object
//! @param flags a set of InfoStringGroup items to include in the return value.
//! @return a QString containing an HMTL encoded description of the Planet.
//! @return a QString containing an HTML encoded description of the Planet.
QString getInfoString(const StelCore *core, const InfoStringGroup& flags) const override;
//! In addition to the entries from StelObject::getInfoMap(), Planet objects provide
//! - phase (result of getPhase)
Expand Down
2 changes: 1 addition & 1 deletion src/core/modules/StarWrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class StarWrapper1 : public StarWrapper<Star1>
//! <li> PlainText </ul>
//! @param core the StelCore object.
//! @param flags a set of InfoStringGroup items to include in the return value.
//! @return a QString containing an HMTL encoded description of the StarWrapper1.
//! @return a QString containing an HTML encoded description of the StarWrapper1.
QString getInfoString(const StelCore *core, const InfoStringGroup& flags) const override;
//! In addition to the entries from StelObject::getInfoMap(), StarWrapper1 objects provide
//! - variable-star (no|eruptive|pulsating|rotating|cataclysmic|eclipsing-binary)
Expand Down

0 comments on commit 4593d91

Please sign in to comment.