From be8ae6aedeab950364ec67a2c2908345ccb5d8f2 Mon Sep 17 00:00:00 2001 From: Zachary Kohnen Date: Mon, 26 Feb 2024 12:48:01 +0100 Subject: [PATCH] Fix missing turbofish in README (#184) Examples in the readme should be valid rust so that users can copy them directly. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bedf66..2cc3812 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ impl App for BasicApp { _, DefaultNodeShape, DefaultEdgeShape, - >new(&mut self.g)); + >::new(&mut self.g)); }); } }