Fix misleading xmldoc

This commit is contained in:
Bartłomiej Dach 2019-09-10 22:45:34 +02:00
parent 29fcab65f9
commit dd9f620c23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ protected static void AddDecoder<T>(string magic, Func<string, Decoder> construc
/// <summary> /// <summary>
/// Registers a fallback decoder instantiation function. /// Registers a fallback decoder instantiation function.
/// The fallback will be returned if the first line of the decoded stream does not match any known magic. /// The fallback will be returned if the first non-empty line of the decoded stream does not match any known magic.
/// </summary> /// </summary>
/// <typeparam name="T">Type of object being decoded.</typeparam> /// <typeparam name="T">Type of object being decoded.</typeparam>
/// <param name="constructor">A function that constructs the fallback<see cref="Decoder"/>.</param> /// <param name="constructor">A function that constructs the fallback<see cref="Decoder"/>.</param>