Skip to content

Commit c2e5c03

Browse files
authored
Merge pull request #212 from themagnifico/patch-1
Fix typo in README.md
2 parents 23dc1ce + 9906878 commit c2e5c03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ $translations = new Gettext\Translations();
148148
$translations[] = new Gettext\Translation('comments', 'One comment', '%s comments');
149149

150150
//Or using the "insert" method
151-
$insertedTranslation = $translations->insert('comments', 'One comments', '%s comments');
151+
$insertedTranslation = $translations->insert('comments', 'One comment', '%s comments');
152152

153153
//Find a specific translation
154-
$translation = $translations->find('comments', 'One comments');
154+
$translation = $translations->find('comments', 'One comment');
155155

156156
//Edit headers, domain, etc
157157
$translations->setHeader('Last-Translator', 'Oscar Otero');

0 commit comments

Comments
 (0)