Skip to content

Commit

Permalink
Additional comment
Browse files Browse the repository at this point in the history
  • Loading branch information
antonchi committed Mar 10, 2019
1 parent e6ff397 commit 57efa4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IntentoSDK/IntentoAiTextTranslate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ async public Task<IList<IList<string>>> ProviderLanguagePairsAsync(string provid
if (pairs != null)
{
foreach (dynamic pair in pairs)
// Important! Явное приведение к string тут важно!
// Important! Conversion to string is important here!
res.Add(new List<string> { (string)pair.from, (string)pair.to });
}

Expand Down

0 comments on commit 57efa4e

Please sign in to comment.