From 177ef599142b541467c7e3a769ab7f3b1ae6c69b Mon Sep 17 00:00:00 2001 From: Petr Kajzar Date: Mon, 17 Aug 2020 13:54:09 +0200 Subject: [PATCH] Fix unordered list to render properly An unordered list without a leading blank line renders only as an inline text. Adding a new blank line is enough to make it render properly as an unordered list, as intended. --- book/03-git-branching/sections/branch-management.asc | 1 + 1 file changed, 1 insertion(+) diff --git a/book/03-git-branching/sections/branch-management.asc b/book/03-git-branching/sections/branch-management.asc index a15e010de..d97e537c1 100644 --- a/book/03-git-branching/sections/branch-management.asc +++ b/book/03-git-branching/sections/branch-management.asc @@ -168,6 +168,7 @@ But the remote still has a _master_ branch. Other collaborators will continue to use the _master_ branch as the base of their work, until you make some further changes. Now you have a few more tasks in front of you to complete the transition: + * Any projects that depend on this one will need to update their code and/or configuration. * Update any test-runner configuration files. * Adjust build and release scripts.