diff options
Diffstat (limited to 'src/structs/coordinate.php')
-rw-r--r-- | src/structs/coordinate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs/coordinate.php b/src/structs/coordinate.php index 79503f3..570e824 100644 --- a/src/structs/coordinate.php +++ b/src/structs/coordinate.php @@ -85,7 +85,7 @@ class ezcGraphCoordinate extends ezcBaseStruct */ public function __toString() { - return sprintf( '( %.2f, %.2f )', $this->x, $this->y ); + return sprintf( '( %.2F, %.2F )', $this->x, $this->y ); } } |