From f22302aaaf0c3ee2ea77392c80098bf999e326a8 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Wed, 7 Aug 2019 06:11:31 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#952 --- wire/core/Module.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wire/core/Module.php b/wire/core/Module.php index 25549438..02d004a4 100644 --- a/wire/core/Module.php +++ b/wire/core/Module.php @@ -140,11 +140,12 @@ * * ~~~~~ * { - * title: 'Your Module title', - * version: 1, - * // and so on + * "title": "Your Module Title", + * "version": 1 * } * ~~~~~ + * Note: The example JSON above just shows "title" and "version", but you would + * likely add more than that as needed, like shown in the static version above. * * ----------------------------------------------------------------- *