From d8ce3b7f61336c02155b8d58abedc87600d2651a Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Tue, 12 Oct 2021 15:56:39 +0200 Subject: Fix typo: alignment has an n in it Change-Id: Ibe0ef16609a704042b964b4c29078c462820e602 Reviewed-by: Ulf Hermann --- src/qml/memory/qv4mm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qml/memory/qv4mm.cpp') 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; -- cgit v1.2.3