summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2022-01-27 17:27:07 +0100
committerKai Köhne <kai.koehne@qt.io>2022-01-28 08:13:09 +0100
commit2fd9667d94621fd4c794ef3c555b2ba72dc37666 (patch)
treea6a3a7ef0d79118a4f24e9d0eafa23204e94815b /doc/src/snippets
parent929cb1412106962424500bbfead6b62409e92b00 (diff)
Doc: Fix typos
Found by running codespell: https://pypi.org/project/codespell/ Pick-to: 6.3 Change-Id: Id0824821cb39fef8731d0f1837207178708f3620 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/webkit/imageanalyzer/resources/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/webkit/imageanalyzer/resources/index.html b/doc/src/snippets/webkit/imageanalyzer/resources/index.html
index 653295158..41ae96a72 100644
--- a/doc/src/snippets/webkit/imageanalyzer/resources/index.html
+++ b/doc/src/snippets/webkit/imageanalyzer/resources/index.html
@@ -43,7 +43,7 @@
<script type="text/javascript">
var remaining = 0;
var connected = false;
- //We use this function because connect statements resolve their target once, imediately
+ //We use this function because connect statements resolve their target once, immediately
//not at signal emission so they must be connected once the imageAnalyzer object has been added to the frame
//! <!-- [ connect slots ] -->
function connectSlots()
@@ -60,7 +60,7 @@
setStatus('Idle');
setResults(imageAnalyzer.red.toFixed(2), imageAnalyzer.green.toFixed(2), imageAnalyzer.blue.toFixed(2));
}
- //This will function as the recieving "slot" for the progress signal
+ //This will function as the receiving "slot" for the progress signal
function updateProg(complete, max)
{
var oldRemaining = remaining;