diff --git a/docs/examples/lib/2-d2oracle/d2oracle.go b/docs/examples/lib/2-d2oracle/d2oracle.go index 763110f07..cb30cfa5a 100644 --- a/docs/examples/lib/2-d2oracle/d2oracle.go +++ b/docs/examples/lib/2-d2oracle/d2oracle.go @@ -28,7 +28,7 @@ func main() { // Create a shape with the ID, "cat" graph, _, _ = d2oracle.Create(graph, "cat") // Move the shape "meow" inside the container "cat" - graph, _ = d2oracle.Move(graph, "meow", "cat.meow") + graph, _ = d2oracle.Move(graph, "meow", "cat.meow", false) // Prints formatted D2 script fmt.Print(d2format.Format(graph.AST)) }