[EntityList] Fix typo. No functional change.

This commit is contained in:
Davide Italiano
2017-02-28 12:39:50 -08:00
committed by Jakob Stoklund Olesen
parent 8616db60dc
commit 6d3ee32f7b

View File

@@ -16,7 +16,7 @@
//! Entity lists are not as safe to use as `Vec<T>`, but they never jeopardize Rust's memory safety //! Entity lists are not as safe to use as `Vec<T>`, but they never jeopardize Rust's memory safety
//! guarantees. These are the problems to be aware of: //! 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. //! 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 //! - 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. //! modifying them may corrupt other lists in the pool.