Fix various typos in the source code

## Description
Fix various typos in the source code. This includes user facing code, documentation, and source comments. This PR has not been tested.
Closes #1605
This commit is contained in:
luz paz 2022-01-22 07:39:05 -05:00
parent 92004286fd
commit f4dcf6557f
21 changed files with 30 additions and 30 deletions

View file

@ -5,12 +5,12 @@ import QtQuick.Controls 2.3
/**
* SortFilderDelegateModel adds sorting and filtering capabilities on a source model.
*
* The way model data is accessed can be overriden by redefining the modelData function.
* The way model data is accessed can be overridden by redefining the modelData function.
* This is useful if the value is not directly accessible from the model and needs
* some extra logic.
*
* Regarding filtering, any type of value can be used as 'filterValue' (variant).
* Filtering behavior can also be overriden by redefining the respectFilter function.
* Filtering behavior can also be overridden by redefining the respectFilter function.
*
* Based on http://doc.qt.io/qt-5/qtquick-tutorials-dynamicview-dynamicview4-example.html
*/

View file

@ -1,7 +1,7 @@
.pragma library
/**
* Perform 'GET' request on url, and bind 'callback' to onreadystatechange (with XHR objet as parameter).
* Perform 'GET' request on url, and bind 'callback' to onreadystatechange (with XHR object as parameter).
*/
function get(url, callback) {
var xhr = new XMLHttpRequest();