From 8534d881f92132ce256d6f3363fc266dd9709555 Mon Sep 17 00:00:00 2001 From: coderstephen Date: Sun, 24 May 2015 16:02:58 -0500 Subject: [PATCH] Fix non-feature-branches schema example not syntax highlighted --- doc/04-schema.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index 86c344cd3..4d1bd60d5 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -903,11 +903,13 @@ An example: If you have a testing branch, that is heavily maintained during a testing phase and is deployed to your staging environment, normally "composer show -s" will give you `versions : * dev-master`. -If you configure latest-.* as a pattern for non-feature-branches like this: +If you configure `latest-.*` as a pattern for non-feature-branches like this: - { - "non-feature-branches": ["latest-.*"] - } +```json +{ + "non-feature-branches": ["latest-.*"] +} +``` Then "composer show -s" will give you `versions : * dev-latest-testing`.