Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Faust authored and Alexander Faust committed Mar 23, 2024
1 parent d45c2ac commit 45082c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Renderer/Image/EpsImageBackEnd.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ final class EpsImageBackEnd implements ImageBackEndInterface
private const SSS_SAFE = self::SS_SAFE." ".self::S_SAFE;
private const SSSS_SAFE = self::SS_SAFE." ".self::SS_SAFE;
private const SCALE_FORMAT = "%1\$1.".self::PRECISION."F %1\$1.".self::PRECISION."F s\n";
private const TRANSLATE_FORMAT = self:SS_SAFE." t\n";
private const TRANSLATE_FORMAT = self::SS_SAFE." t\n";
private const MOVE_FORMAT = self::SS_SAFE." m";
private const LINE_FORMAT = self::SS_SAFE." l";
private const CURVE_FORMAT = self::SSS_SAFE." ".self::SSS_SAFE." c";
Expand Down
4 changes: 2 additions & 2 deletions src/Renderer/Image/SvgImageBackEnd.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ final class SvgImageBackEnd implements ImageBackEndInterface
{
private const PRECISION = 3;
private const S_SAFE = '%.' . self::PRECISION . 'F';
private const SS_SAFE = self::S_SAFE.' 'self::S_SAFE;
private const SSS_SAFE = self::S_SAFE.' 'self::S_SAFE;
private const SS_SAFE = self::S_SAFE.' '.self::S_SAFE;
private const SSS_SAFE = self::S_SAFE.' '.self::S_SAFE;
private const SCALE_FORMAT = 'scale(%.' . self::PRECISION . 'F)';
private const TRANSLATE_FORMAT = 'translate(%.' . self::PRECISION . 'F,%.' . self::PRECISION . 'F)';
private const MOVE_FORMAT = 'M'.self::SS_SAFE;
Expand Down

0 comments on commit 45082c4

Please sign in to comment.