diff --git a/content/en/docs/examples/jsonp.md b/content/en/docs/examples/jsonp.md index 63c7dc551..a39221232 100644 --- a/content/en/docs/examples/jsonp.md +++ b/content/en/docs/examples/jsonp.md @@ -13,8 +13,9 @@ func main() { data := map[string]interface{}{ "foo": "bar", } - - //callback is x + + // GET /JSONP?callback=x + // callback is x // Will output : x({\"foo\":\"bar\"}) c.JSONP(http.StatusOK, data) })