aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/memory
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2021-10-12 15:56:39 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2021-10-13 18:58:22 +0200
commitd8ce3b7f61336c02155b8d58abedc87600d2651a (patch)
treed1cf8daff1b659d7cc2378de5f15e70c9f80b473 /src/qml/memory
parentb21948f5e811ce1b7abf065bc48af61a231e86f4 (diff)
Fix typo: alignment has an n in it
Change-Id: Ibe0ef16609a704042b964b4c29078c462820e602 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/memory')
-rw-r--r--src/qml/memory/qv4mm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/memory/qv4mm.cpp b/src/qml/memory/qv4mm.cpp
index b9f06e4133..729cfcaaea 100644
--- a/src/qml/memory/qv4mm.cpp
+++ b/src/qml/memory/qv4mm.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtQml module of the Qt Toolkit.
@@ -122,7 +122,7 @@ struct MemorySegment {
MemorySegment(size_t size)
{
- size += Chunk::ChunkSize; // make sure we can get enough 64k aligment memory
+ size += Chunk::ChunkSize; // make sure we can get enough 64k alignment memory
if (size < SegmentSize)
size = SegmentSize;