From 6967d0bfcbfc3ede8cdbaa7e8e38d36cf16df1ab Mon Sep 17 00:00:00 2001 From: Reed Allman Date: Fri, 9 Mar 2018 12:06:31 -0800 Subject: [PATCH] json format __definition__ omit whitespace between objects (#835) http://json.org/ says: `Whitespace can be inserted between any pair of tokens. Excepting a few encoding details, that completely describes the language.` we do not explicitly need the whitespace between objects in our json, it's entirely optional and soon we will even support it (#830)! --- docs/developers/function-format.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/developers/function-format.md b/docs/developers/function-format.md index bb1ef6592..a210d769f 100644 --- a/docs/developers/function-format.md +++ b/docs/developers/function-format.md @@ -96,7 +96,6 @@ Internally functions receive data in the example format below: } } } -BLANK LINE { NEXT INPUT OBJECT } @@ -127,7 +126,6 @@ Function's output format should have the following format: } } } -BLANK LINE { NEXT OUTPUT OBJECT }