From 72ef99729f2b44fc9613cbd110d002a3937e2d18 Mon Sep 17 00:00:00 2001 From: Quentin Renard Date: Thu, 3 Jun 2021 03:33:26 +0200 Subject: [PATCH] Fix Doctum config file --- docs-api/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-api/config.php b/docs-api/config.php index e2e169ff6..f1bcbeaff 100644 --- a/docs-api/config.php +++ b/docs-api/config.php @@ -13,10 +13,10 @@ ->in($dir); $versions = GitVersionCollection::create($dir) - ->add('master', 'master branch'); + ->add('master', 'master branch') ->add('1.1', '1.1 branch') ->add('1.2', '1.2 branch') - ->add('2.x', '2.x branch') + ->add('2.x', '2.x branch'); return new Doctum($iterator, [ 'title' => 'Twill API',