Skip to content

Commit

Permalink
fix spellcheck typos
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 committed Aug 23, 2021
1 parent 96eb75a commit 0034f49
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Expand Up @@ -99,7 +99,7 @@ Emitted when data is received.

void errorOccurred( QNetworkReply::NetworkError code, const QString &errorMsg );
%Docstring
Emitted when an error with ``code`` error occured while processing the request
Emitted when an error with ``code`` error occurred while processing the request
``errorMsg`` is a textual description of the error

.. versionadded:: 3.22
Expand Down
Expand Up @@ -84,7 +84,7 @@ Emitted when the file is fetched and accessible

void errorOccurred( QNetworkReply::NetworkError code, const QString &errorMsg );
%Docstring
Emitted when an error with ``code`` error occured while processing the request
Emitted when an error with ``code`` error occurred while processing the request
``errorMsg`` is a textual description of the error

.. versionadded:: 3.22
Expand Down
Expand Up @@ -95,7 +95,7 @@ without danger of the task being first removed by the :py:class:`QgsTaskManager`

void errorOccurred( QNetworkReply::NetworkError code, const QString &errorMsg );
%Docstring
Emitted when an error with ``code`` error occured while processing the request
Emitted when an error with ``code`` error occurred while processing the request
``errorMsg`` is a textual description of the error

.. versionadded:: 3.22
Expand Down
2 changes: 1 addition & 1 deletion src/core/network/qgsnetworkcontentfetcher.h
Expand Up @@ -106,7 +106,7 @@ class CORE_EXPORT QgsNetworkContentFetcher : public QObject
void downloadProgress( qint64 bytesReceived, qint64 bytesTotal );

/**
* Emitted when an error with \a code error occured while processing the request
* Emitted when an error with \a code error occurred while processing the request
* \a errorMsg is a textual description of the error
* \since QGIS 3.22
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/network/qgsnetworkcontentfetcherregistry.cpp
Expand Up @@ -167,7 +167,7 @@ void QgsFetchedContent::taskCompleted()
QNetworkReply *reply = mFetchingTask->reply();
if ( reply->error() == QNetworkReply::NoError )
{
// keep extension, it can be usefull when guessing file content
// keep extension, it can be useful when guessing file content
// (when loading this file in a Qt WebView for instance)
const QString extension = QFileInfo( reply->request().url().fileName() ).completeSuffix();

Expand Down
2 changes: 1 addition & 1 deletion src/core/network/qgsnetworkcontentfetcherregistry.h
Expand Up @@ -104,7 +104,7 @@ class CORE_EXPORT QgsFetchedContent : public QObject
void fetched();

/**
* Emitted when an error with \a code error occured while processing the request
* Emitted when an error with \a code error occurred while processing the request
* \a errorMsg is a textual description of the error
* \since QGIS 3.22
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/network/qgsnetworkcontentfetchertask.h
Expand Up @@ -104,7 +104,7 @@ class CORE_EXPORT QgsNetworkContentFetcherTask : public QgsTask
void fetched();

/**
* Emitted when an error with \a code error occured while processing the request
* Emitted when an error with \a code error occurred while processing the request
* \a errorMsg is a textual description of the error
* \since QGIS 3.22
*/
Expand Down

0 comments on commit 0034f49

Please sign in to comment.