doc: typos

This commit is contained in:
Michele Caini
2020-07-08 18:07:26 +02:00
parent 89d7c7e572
commit b8d25e2327
4 changed files with 11 additions and 10 deletions

1
TODO
View File

@@ -20,3 +20,4 @@ Next:
* WIP: snapshot rework
- snapshot: support for range-based archives
- update documentation to describe alternatives
- storage::object_type -> value_type

View File

@@ -101,7 +101,7 @@ public:
using entity_type = Entity;
/*! @brief Unsigned integer type. */
using size_type = std::size_t;
/*! @brief Input iterator type. */
/*! @brief Random access iterator type. */
using iterator = typename sparse_set<Entity>::iterator;
/**
@@ -213,7 +213,7 @@ public:
* `end()`.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the first entity that has the given components.
@@ -231,7 +231,7 @@ public:
* results in undefined behavior.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the entity following the last entity that has the
@@ -521,7 +521,7 @@ public:
using entity_type = Entity;
/*! @brief Unsigned integer type. */
using size_type = std::size_t;
/*! @brief Input iterator type. */
/*! @brief Random access iterator type. */
using iterator = typename sparse_set<Entity>::iterator;
/**
@@ -625,7 +625,7 @@ public:
* `end()`.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the first entity that has the given components.
@@ -643,7 +643,7 @@ public:
* results in undefined behavior.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the entity following the last entity that has the

View File

@@ -267,7 +267,7 @@ public:
using entity_type = Entity;
/*! @brief Unsigned integer type. */
using size_type = std::size_t;
/*! @brief Input iterator type. */
/*! @brief Random access iterator type. */
using iterator = typename sparse_set<Entity>::iterator;
/*! @brief Default constructor. */

View File

@@ -150,7 +150,7 @@ public:
using entity_type = Entity;
/*! @brief Unsigned integer type. */
using size_type = std::size_t;
/*! @brief Input iterator type. */
/*! @brief Bidirectional iterator type. */
using iterator = view_iterator;
/**
@@ -178,7 +178,7 @@ public:
* `end()`.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the first entity that has the given components.
@@ -202,7 +202,7 @@ public:
* results in undefined behavior.
*
* @note
* Input iterators stay true to the order imposed to the underlying data
* Iterators stay true to the order imposed to the underlying data
* structures.
*
* @return An iterator to the entity following the last entity that has the