MetaData: fix typo

This commit is contained in:
Thomas Gelf 2016-12-23 12:47:43 +01:00
parent ad5cf47862
commit 79ea88fe08

View file

@ -45,7 +45,7 @@ class Metadata
if ($title === $this->name) {
return $title;
} else {
return sprint('%s (%s)', $title, $this->name);
return sprintf('%s (%s)', $title, $this->name);
}
}