Skip to content

Commit

Permalink
Correcting documentation where Type is coming with Wrong Response Method
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagosantoscunha committed Jan 13, 2019
1 parent 9b8a1eb commit 6cee041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,21 @@ namespace RESTFulSampleServer.HyperMedia
Action = HttpActionVerb.GET,
Href = urlHelper.Link("DefaultApi", url),
Rel = RelationType.self,
Type = RensponseTypeFormat.DefaultGet
Type = ResponseTypeFormat.DefaultGet
});
content.Links.Add(new HyperMediaLink()
{
Action = HttpActionVerb.POST,
Href = urlHelper.Link("DefaultApi", url),
Rel = RelationType.self,
Type = RensponseTypeFormat.DefaultPost
Type = ResponseTypeFormat.DefaultPost
});
content.Links.Add(new HyperMediaLink()
{
Action = HttpActionVerb.PUT,
Href = urlHelper.Link("DefaultApi", url),
Rel = RelationType.self,
Type = RensponseTypeFormat.DefaultPost
Type = ResponseTypeFormat.DefaultPost
});
content.Links.Add(new HyperMediaLink()
{
Expand Down

0 comments on commit 6cee041

Please sign in to comment.