For simple types like integer etc, string the resource description is repeated:
```
/// <summary>
/// gets value associated with given id
/// </summary>
/// <param name="id">id of the value</param>
/// <returns>Value</returns>
public int Get(int id)
{
return 10;
}
```
Attached a snapshot with highlighted text in it.
Comments: Fixed by change set [0176e15c0fac](https://aspnetwebstack.codeplex.com/SourceControl/changeset/0176e15c0fac3bea1b67ca1d155b0d4f17695e67).
```
/// <summary>
/// gets value associated with given id
/// </summary>
/// <param name="id">id of the value</param>
/// <returns>Value</returns>
public int Get(int id)
{
return 10;
}
```
Attached a snapshot with highlighted text in it.
Comments: Fixed by change set [0176e15c0fac](https://aspnetwebstack.codeplex.com/SourceControl/changeset/0176e15c0fac3bea1b67ca1d155b0d4f17695e67).