From d9629cfca7145526adb0cf699775739cca300bd9 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sat, 11 May 2013 08:51:20 +0200 Subject: [PATCH] Fixed typo in sf::Transformable documentation --- include/SFML/Graphics/Transformable.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SFML/Graphics/Transformable.hpp b/include/SFML/Graphics/Transformable.hpp index 6a136ed9..28fb3863 100644 --- a/include/SFML/Graphics/Transformable.hpp +++ b/include/SFML/Graphics/Transformable.hpp @@ -359,10 +359,10 @@ private : /// In addition to the position, rotation and scale, sf::Transformable /// provides an "origin" component, which represents the local origin /// of the three other components. Let's take an example with a 10x10 -/// pixels sprite. By default, the sprite is positionned/rotated/scaled +/// pixels sprite. By default, the sprite is positioned/rotated/scaled /// relatively to its top-left corner, because it is the local point /// (0, 0). But if we change the origin to be (5, 5), the sprite will -/// be positionned/rotated/scaled around its center instead. And if +/// be positioned/rotated/scaled around its center instead. And if /// we set the origin to (10, 10), it will be transformed around its /// bottom-right corner. ///