Skip to content

Commit

Permalink
Update sample2.cs (dotnet#5629)
Browse files Browse the repository at this point in the history
Missing semicolon
  • Loading branch information
sambres authored and scottaddie committed Mar 8, 2018
1 parent 4199f20 commit 319f3ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ public Product GetProduct(int id)
{
Content = new StringContent(string.Format("No product with ID = {0}", id)),
ReasonPhrase = "Product ID Not Found"
}
};
throw new HttpResponseException(resp);
}
return item;
}
}

0 comments on commit 319f3ae

Please sign in to comment.