From 6d3ee32f7b7cd02cbef285069d8a8dff9bbfa71a Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Tue, 28 Feb 2017 12:39:50 -0800 Subject: [PATCH] [EntityList] Fix typo. No functional change. --- lib/cretonne/src/entity_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cretonne/src/entity_list.rs b/lib/cretonne/src/entity_list.rs index d94795c902..b2c75bd9ed 100644 --- a/lib/cretonne/src/entity_list.rs +++ b/lib/cretonne/src/entity_list.rs @@ -16,7 +16,7 @@ //! Entity lists are not as safe to use as `Vec`, but they never jeopardize Rust's memory safety //! guarantees. These are the problems to be aware of: //! -//! - If you lose track of an entity list, it's memory won't be recycled until the pool is cleared. +//! - If you lose track of an entity list, its memory won't be recycled until the pool is cleared. //! This can cause the pool to grow very large with leaked lists. //! - If entity lists are used after their pool is cleared, they may contain garbage data, and //! modifying them may corrupt other lists in the pool.