diff options
author | Sergio Ahumada <[email protected]> | 2014-03-03 17:28:30 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-03-03 17:39:17 +0100 |
commit | e525b727f29adad1df3a6a81d6bba7c4617f78ba (patch) | |
tree | b9bb46acffaaeae06e72de9dd7a5737c986a4190 /src/qml/jsruntime/qv4mm_p.h | |
parent | 5a06bc73822576cb9ffceb243f43f6b28fd6b4dc (diff) |
Fix some typos
Change-Id: Iea540b768232ea423ea7f04e41655198931cf36d
Reviewed-by: Jerome Pasion <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4mm_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4mm_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4mm_p.h b/src/qml/jsruntime/qv4mm_p.h index a8fd585332..67fc87330b 100644 --- a/src/qml/jsruntime/qv4mm_p.h +++ b/src/qml/jsruntime/qv4mm_p.h @@ -92,7 +92,7 @@ public: ~MemoryManager(); // TODO: this is only for 64bit (and x86 with SSE/AVX), so exend it for other architectures to be slightly more efficient (meaning, align on 8-byte boundaries). - // Note: all occurances of "16" in alloc/dealloc are also due to the alignment. + // Note: all occurrences of "16" in alloc/dealloc are also due to the alignment. static inline std::size_t align(std::size_t size) { return (size + 15) & ~0xf; } |