Skip to content

Commit

Permalink
docs: ✏️ Fix typo (jsverse#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
tidusjar authored Jun 14, 2024
1 parent e6f1783 commit 6c042cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/recipes/google-translate-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const localSource = sourceFile(defaultSourceLang);
final[section][word] = destlSource[section][word]
} else {
console.log(' >>> ' + section + ' ' + words[word]);
const newWord = await trasnlate(words[word], local);
const newWord = await translate(words[word], local);
console.log(' ### translated to ' + newWord);
final[section][word] = newWord;
}
Expand Down

0 comments on commit 6c042cc

Please sign in to comment.