view en/undo-non-tip.dot @ 562:0ab26d50eba3

corrected a typo in a perl regexp. \o/ \o/ \o/ therefore I know quantum mechanics!!! see xkcd
author Javier Rojas <jerojasro@devnull.li>
date Tue, 23 Dec 2008 17:45:08 -0500
parents c9aad709bd3a
children
line wrap: on
line source

digraph undo_non_tip {
	"first change" -> "second change";
	"second change" -> "third change";
	backout [label="back out\nsecond change", shape=box];
	"second change" -> backout;
	merge [label="automated\nmerge", shape=box];
	"third change" -> merge;
	backout -> merge;
}