From 3acc332de06f732331b7e4f989315ab2d5928f99 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sun, 12 May 2024 20:15:44 -0500 Subject: [PATCH] Use American spellings --- include/SFML/Graphics/VertexBuffer.hpp | 2 +- include/SFML/Window/Cursor.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SFML/Graphics/VertexBuffer.hpp b/include/SFML/Graphics/VertexBuffer.hpp index c7b5f0698..510a3e182 100644 --- a/include/SFML/Graphics/VertexBuffer.hpp +++ b/include/SFML/Graphics/VertexBuffer.hpp @@ -386,7 +386,7 @@ SFML_GRAPHICS_API void swap(VertexBuffer& left, VertexBuffer& right) noexcept; /// Simultaneous updates to the vertex buffer are not guaranteed to be /// carried out by the driver in any specific order. Updating the same /// region of the buffer from multiple threads will not cause undefined -/// behaviour, however the final state of the buffer will be unpredictable. +/// behavior, however the final state of the buffer will be unpredictable. /// /// Simultaneous updates of distinct non-overlapping regions of the buffer /// are also not guaranteed to complete in a specific order. However, in diff --git a/include/SFML/Window/Cursor.hpp b/include/SFML/Window/Cursor.hpp index 11510485d..e721f01dc 100644 --- a/include/SFML/Window/Cursor.hpp +++ b/include/SFML/Window/Cursor.hpp @@ -240,7 +240,7 @@ private: /// with either loadFromPixels() or loadFromSystem(), the /// cursor can be changed with sf::WindowBase::setMouseCursor(). /// -/// The behaviour is undefined if the cursor is destroyed while +/// The behavior is undefined if the cursor is destroyed while /// in use by the window. /// /// Usage example: