Skip to content

Commit

Permalink
Example fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed May 29, 2015
1 parent 586c2c8 commit 0b62981
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"joined": {
"type": "string",
"pattern": "\d{4}-\d{2}-\d{2}"
"pattern": "\\d{4}-\\d{2}-\\d{2}"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions example.apib
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Note description
### Get Note [GET]
Get a single note.

+ Response 200 (applicatoin/json)
+ Response 200 (application/json)

+ Headers

Expand Down Expand Up @@ -221,7 +221,7 @@ Get a list of bars

+ Response 200 (application/json)

['tag1', 'tag2', 'tag3']
["tag1", "tag2", "tag3"]

## Get one tag [/tags/{id}]
Get a single tag
Expand Down

0 comments on commit 0b62981

Please sign in to comment.