Skip to content

Commit 00a1b16

Browse files
committed
Fixing some formatting error
1 parent a427fd1 commit 00a1b16

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

docs/branches.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -278,16 +278,23 @@ Merge 'cool-feature' to 'master'
278278
```mermaid
279279
graph LR
280280
281-
"commit2" -> "commit1"
282-
"commitX" -> "commit1"
283-
"commit3" -> "commit2"
284-
"commitY" -> "commitX"
285-
"master" -> "commit4" [style=dashed]
286-
"cool-feature" -> "commitY" [style=dashed]
287-
"commit4" -> "commit3"
288-
"commit4" -> "commitY"
289-
master [shape=plaintext]
290-
"cool-feature" [shape=plaintext]
281+
commitX(["commitX"])
282+
commit1(["commit1"])
283+
commit2(["commit2"])
284+
commitY(["commitY"])
285+
commit3(["commit3"])
286+
287+
commit2 --> commit1
288+
commitX --> commit1
289+
commit3 --> commit2
290+
commitY --> commitX
291+
292+
master["master"]
293+
master -.-> commit4
294+
cool-feature["cool-feature"]
295+
cool-feature -.-> commitY
296+
commit4 --> commit3
297+
commit4 --> commitY
291298
```
292299

293300
Delete 'cool-feature'

0 commit comments

Comments
 (0)