rename variable

This commit is contained in:
yggverse 2024-07-30 14:48:15 +03:00
parent 5b3f0c2497
commit acb54dc28e

View file

@ -174,11 +174,11 @@ class Markup implements \Yggverse\Yoda\Interface\Model\Gtk\Pango\Markup
{
if (isset($words[$line]))
{
$try = implode(
$markup = implode(
' ' , $words[$line]
) . ' ' . $word;
if (self::_width($try) > $width)
if (self::_width($markup) > $width)
{
$line++;
}