From c95daca220c9d79260210a837186136f143a4e61 Mon Sep 17 00:00:00 2001 From: Filipe Tavares Date: Sun, 26 Nov 2017 21:15:00 +0100 Subject: [PATCH] Doc updates --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f87d0cd..a72b4e0 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ The object describing the operations to be exposed by the application. You can a // Operation with preceding middleware // The last element of the array should be the handler for the operation. // This works in both function and http modes. - operationC: [...middleware, () => { /* Do stuff */ }] + operationC: [ ...middleware, () => { /* Do stuff */ } ] } ```