Skip to content

Commit

Permalink
Unified quote style in JSON examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Antti Pitkanen committed Mar 6, 2012
1 parent 5d32169 commit 05c62e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/Tags.md
Expand Up @@ -7,19 +7,19 @@ The following message sent to Flowdock...


``` ```
{ {
event: "message", "event": "message",
content: "@Marty, there's a severe #bug in the flux-capacitor, see http://example.com", "content": "@Marty, there's a severe #bug in the flux-capacitor, see http://example.com",
tags: ["#space-time-continuum"] "tags": ["#space-time-continuum"]
} }
``` ```


...would be dispatched to other listening clients in this form: ...would be dispatched to other listening clients in this form:


``` ```
{ {
event: "message", "event": "message",
content: "@Marty, there's a severe #bug in the flux-capacitor.", "content": "@Marty, there's a severe #bug in the flux-capacitor.",
tags: [":user:16", ":unread:16", ":url", "bug", "space-time-continuum"] "tags": [":user:16", ":unread:16", ":url", "bug", "space-time-continuum"]
} }
``` ```


Expand Down

0 comments on commit 05c62e1

Please sign in to comment.