Fixing doc comments

This commit is contained in:
Pranav K 2014-10-16 08:19:54 -07:00
parent b2a01e7b45
commit 8cf74afc75
1 changed files with 4 additions and 3 deletions

View File

@ -72,10 +72,11 @@ namespace Microsoft.AspNet.Mvc.Razor.Directives
} }
/// <summary> /// <summary>
/// Merges a list of chunks into the specified <paramref name="codeTree/>. /// Merges a list of chunks into the specified <paramref name="codeTree"/>.
/// </summary> /// </summary>
/// <param name="codeTree">The <see cref="CodeTree"/> to mere</param> /// <param name="codeTree">The <see cref="CodeTree"/> to merge.</param>
/// <param name="inherited">The list of chunks to merge.</param> /// <param name="inherited">The <see credit="IReadOnlyList{T}"/> of <see cref="Chunk"/> to merge.</param>
/// <param name="defaultModel">The list of chunks to merge.</param>
public void MergeInheritedChunks([NotNull] CodeTree codeTree, public void MergeInheritedChunks([NotNull] CodeTree codeTree,
[NotNull] IReadOnlyList<Chunk> inherited, [NotNull] IReadOnlyList<Chunk> inherited,
string defaultModel) string defaultModel)