From b19e278b737b2fa1bdc11452ecddc9c95fc385f1 Mon Sep 17 00:00:00 2001 From: Lavdim Xhelili Date: Mon, 3 Apr 2017 15:46:15 +0200 Subject: [PATCH] It should be return not returns! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9833a4c..5b6f183 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ If you need to automatically re-render other event data, you can use `calendar-w `calendar-watch-event` expression must return a function that is passed `event` as argument and returns a string or a number, for example: $scope.extraEventSignature = function(event) { - returns "" + event.price; + return "" + event.price; }