Skip to content

Commit

Permalink
Incorporate code review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmatson committed Aug 8, 2013
1 parent 7d93bbf commit f1657cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/System.Web.Http/ApiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ protected internal virtual BadRequestResult BadRequest()
/// Creates a <see cref="BadRequestErrorMessageResult"/> (400 Bad Request) with the specified error message.
/// </summary>
/// <param name="message">The user-visible error message.</param>
/// <returns>A <see cref="BadRequestErrorMessageResult"/> with the specified model state.</returns>
/// <returns>A <see cref="BadRequestErrorMessageResult"/> with the specified error message.</returns>
protected internal virtual BadRequestErrorMessageResult BadRequest(string message)
{
return new BadRequestErrorMessageResult(message, this);
Expand Down

0 comments on commit f1657cf

Please sign in to comment.