view en/undo-non-tip.dot @ 246:8c15549666fa

Fix another typo, courtesy of Tim Hatch.
author Bryan O'Sullivan <bos@serpentine.com>
date Wed, 30 May 2007 09:03:12 -0700
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;
}