False positive "You repeated a word"
The language tool is seeing the comments containing a duplicate word as it's not seeing the wrapping tags, e.g. all my controller documentation triggers this…
/// <summary>
/// Get a model
/// </summary>
/// <param name="identity"></param>
/// <returns>A model</returns>
/// <response code="200">Returns the requested model</response>
/// <response code="404">Model with specified id does not exist</response>
[HttpGet("{identity}")]
[ProducesResponseType(typeof(Contracts.Model), StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
public async Task<IActionResult> Get(string identity)
{
var result = await mediator.Send(new ModelQuery
{
Identity = identity
});
return result.ToActionResult();
}
The “Model” in the response code blocks are triggered
Please sign in to leave a comment.
Hello Paul Hatcher, thank you for your message. I've submitted a new issue to our bug tracker. Please comment or vote for it to get notifications about status changes. Let me know if you have any questions. Thank you!