瀏覽代碼

updated doc

Michele Caini 7 年之前
父節點
當前提交
253b5b1fb7
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/entt/entity/sparse_set.hpp

+ 3 - 3
src/entt/entity/sparse_set.hpp

@@ -188,7 +188,7 @@ public:
     using entity_type = Entity;
     using entity_type = Entity;
     /*! @brief Unsigned integer type. */
     /*! @brief Unsigned integer type. */
     using size_type = std::size_t;
     using size_type = std::size_t;
-    /*! @brief Input iterator type. */
+    /*! @brief Random access iterator type. */
     using iterator_type = iterator;
     using iterator_type = iterator;
 
 
     /*! @brief Default constructor. */
     /*! @brief Default constructor. */
@@ -791,9 +791,9 @@ public:
     using entity_type = typename underlying_type::entity_type;
     using entity_type = typename underlying_type::entity_type;
     /*! @brief Unsigned integer type. */
     /*! @brief Unsigned integer type. */
     using size_type = typename underlying_type::size_type;
     using size_type = typename underlying_type::size_type;
-    /*! @brief Input iterator type. */
+    /*! @brief Random access iterator type. */
     using iterator_type = iterator<false>;
     using iterator_type = iterator<false>;
-    /*! @brief Constant input iterator type. */
+    /*! @brief Constant random access iterator type. */
     using const_iterator_type = iterator<true>;
     using const_iterator_type = iterator<true>;
 
 
     /**
     /**