aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/particles/customparticle/customparticle.qml2
-rw-r--r--examples/particles/imageparticle/content/sharing.qml2
-rw-r--r--examples/particles/system/system.qml2
-rw-r--r--examples/quick/modelviews/listview/highlight.qml2
-rw-r--r--examples/quick/text/text.qml2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/particles/customparticle/customparticle.qml b/examples/particles/customparticle/customparticle.qml
index cb2972bc77..eb4f772e97 100644
--- a/examples/particles/customparticle/customparticle.qml
+++ b/examples/particles/customparticle/customparticle.qml
@@ -53,7 +53,7 @@ import "../../shared" as Examples
Blur Particles adds a blur effect to the particles, which increases over the particle's life time.
It uses a custom vertex shader:
\snippet examples/particles/customparticle/content/blurparticles.qml vertex
- to propagate life time simulation to a custom fragement shader:
+ to propagate life time simulation to a custom fragment shader:
\snippet examples/particles/customparticle/content/blurparticles.qml fragment
which has access to both the normal image sampler and a blurred sampler, the image plus a ShaderEffect.
diff --git a/examples/particles/imageparticle/content/sharing.qml b/examples/particles/imageparticle/content/sharing.qml
index 3fe50c8a2c..19d3790d6b 100644
--- a/examples/particles/imageparticle/content/sharing.qml
+++ b/examples/particles/imageparticle/content/sharing.qml
@@ -78,7 +78,7 @@ Rectangle {
}
}
- // Define a highlight with customised movement between items.
+ // Define a highlight with customized movement between items.
Component {
id: highlightBar
Rectangle {
diff --git a/examples/particles/system/system.qml b/examples/particles/system/system.qml
index acc98709ff..2177f60987 100644
--- a/examples/particles/system/system.qml
+++ b/examples/particles/system/system.qml
@@ -56,7 +56,7 @@ import "../../shared" as Examples
Start and Stop simply sets the running and paused states of a ParticleSystem. While the system does not perform any simulation when stopped or paused, a restart restarts the simulation from the beginning, while unpausing resumes the simulation from where it was.
- Timed group changes is an example that highlights the ParticleGroup element. While normally referring to groups with a string name is sufficent, additional effects can be
+ Timed group changes is an example that highlights the ParticleGroup element. While normally referring to groups with a string name is sufficient, additional effects can be
done by setting properties on groups.
The first group has a variable duration on it, but always transitions to the second group.
\snippet examples/particles/system/content/timedgroupchanges.qml 0
diff --git a/examples/quick/modelviews/listview/highlight.qml b/examples/quick/modelviews/listview/highlight.qml
index 3f2a3dc0c4..452d6c9119 100644
--- a/examples/quick/modelviews/listview/highlight.qml
+++ b/examples/quick/modelviews/listview/highlight.qml
@@ -77,7 +77,7 @@ Rectangle {
}
//! [0]
- // Define a highlight with customised movement between items.
+ // Define a highlight with customized movement between items.
Component {
id: highlightBar
Rectangle {
diff --git a/examples/quick/text/text.qml b/examples/quick/text/text.qml
index 06d10e65ba..4b11b93189 100644
--- a/examples/quick/text/text.qml
+++ b/examples/quick/text/text.qml
@@ -79,7 +79,7 @@ import "../../shared"
the <img> tag.
'Text Layout' shows how to create a more complex layout for a text element.
- This example lays out the text in two colums using the onLineLaidOut handler
+ This example lays out the text in two columns using the onLineLaidOut handler
that allows you to position and resize each line:
\snippet examples/quick/text/styledtext-layout.qml layout
*/