diff --git a/docs/integrations/creating-nodes/build/reference/node-file-structure.md b/docs/integrations/creating-nodes/build/reference/node-file-structure.md index 0a649cfca..e28750ce4 100644 --- a/docs/integrations/creating-nodes/build/reference/node-file-structure.md +++ b/docs/integrations/creating-nodes/build/reference/node-file-structure.md @@ -32,7 +32,7 @@ A basic pattern is to separate out operations. Refer to the [HttpBin starter nod For more complex nodes, n8n recommends a directory structure. Refer to the [Airtable node](https://github.com/n8n-io/n8n/tree/master/packages/nodes-base/nodes/Airtable){:target=_blank .external-class} or [Microsoft Outlook node](https://github.com/n8n-io/n8n/tree/master/packages/nodes-base/nodes/Microsoft/Outlook){:target=_blank .external-link} as examples. - * `actions`: a directories containing sub-directories that represent resources. + * `actions`: a directory containing sub-directories that represent resources. * Each sub-directory should contain two types of files: * An index file with resource description (named either `.resource.ts` or `index.ts`) * Files for operations `.operation.ts`. These files should have two exports: `description` of the operation and an `execute` function.