From 3267006921ba58a9d94fa6d7087f32fc9452e680 Mon Sep 17 00:00:00 2001 From: Scott Hutchens Date: Tue, 12 May 2020 04:29:32 +1000 Subject: [PATCH] :zap: Corrected typo. (#557) --- docs/create-node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/create-node.md b/docs/create-node.md index 34fc7ef95f..aa19393983 100644 --- a/docs/create-node.md +++ b/docs/create-node.md @@ -106,7 +106,7 @@ Please make sure that everything works correctly and that no unnecessary code ge Never change the incoming data a node receives (which can be queried with `this.getInputData()`) as it gets shared by all nodes. If data has to get added, changed or deleted it has to be cloned and the new data returned. If that is not done, sibling nodes which execute after the current one will operate on the altered data and would process different data than they were supposed to. It is however not needed to always clone all the data. If a node for, example only, changes only the binary data but not the JSON data, a new item can be created which reuses the reference to the JSON item. -An example can be seen in the code of the [ReadBinartFile-Node](https://github.com/n8n-io/n8n/blob/master/packages/nodes-base/nodes/ReadBinaryFile.node.ts#L69-L83). +An example can be seen in the code of the [ReadBinaryFile-Node](https://github.com/n8n-io/n8n/blob/master/packages/nodes-base/nodes/ReadBinaryFile.node.ts#L69-L83). ### Write nodes in TypeScript