Skip to content

Commit

Permalink
Replaced Todo's with useful information in Translator.cs (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anderwafe committed Oct 1, 2023
1 parent 61d7716 commit 2d6a3ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Algorithms/DataCompression/Translator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
namespace Algorithms.DataCompression
{
/// <summary>
/// TODO.
/// Provides method for text conversion by key mapping.
/// </summary>
public class Translator
{
/// <summary>
/// TODO.
/// Converts the input text according to the translation keys.
/// </summary>
/// <param name="text">TODO. 2.</param>
/// <param name="translationKeys">TODO. 3.</param>
/// <returns>TODO. 4.</returns>
/// <param name="text">Input text.</param>
/// <param name="translationKeys">Translation keys used for text matching.</param>
/// <returns>Converted text according to the translation keys.</returns>
public string Translate(string text, Dictionary<string, string> translationKeys)
{
var sb = new StringBuilder();
Expand Down

0 comments on commit 2d6a3ee

Please sign in to comment.