From 2b04099604dcc5c8240f1d8e9bc8a62644eeff91 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 19 Jun 2018 14:16:42 -0700 Subject: [PATCH] Fix a typo in a comment. --- lib/entity/src/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/entity/src/list.rs b/lib/entity/src/list.rs index 8a0aecbdfd..e48a839759 100644 --- a/lib/entity/src/list.rs +++ b/lib/entity/src/list.rs @@ -34,7 +34,7 @@ use EntityRef; /// function they belong to. *Cloning an entity list does not allocate new memory for the clone*. /// It creates an alias of the same memory. /// -/// Entity lists can also be hashed and compared for equality, but those operations just panic if, +/// Entity lists can also be hashed and compared for equality, but those operations just panic if /// they're ever actually called, because it's not possible to compare the contents of the list /// without the pool reference. ///