From: Matthias Schmidt Date: Sun, 7 Dec 2014 13:37:43 +0000 (+0100) Subject: Fix typo in comment X-Git-Tag: 2.1.0_Beta_1~85^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a8e8435cff5e152f2b50e331916fdec96d0043c1;p=GitHub%2FWoltLab%2FWCF.git Fix typo in comment --- diff --git a/wcfsetup/install/files/lib/system/image/adapter/GDImageAdapter.class.php b/wcfsetup/install/files/lib/system/image/adapter/GDImageAdapter.class.php index 9257ca6950..132acaa03e 100644 --- a/wcfsetup/install/files/lib/system/image/adapter/GDImageAdapter.class.php +++ b/wcfsetup/install/files/lib/system/image/adapter/GDImageAdapter.class.php @@ -272,7 +272,7 @@ class GDImageAdapter implements IImageAdapter { * @see \wcf\system\image\adapter\IImageAdapter::rotate() */ public function rotate($degrees) { - // imagerotate interpretes degress as counter-clockwise + // imagerotate interpretes degrees as counter-clockwise return imagerotate($this->image, (360.0 - $degrees), ($this->color ?: 0)); }