diff --git a/nac3core/irrt/irrt/ndarray/indexing.hpp b/nac3core/irrt/irrt/ndarray/indexing.hpp index 8d971230..33f71d1e 100644 --- a/nac3core/irrt/irrt/ndarray/indexing.hpp +++ b/nac3core/irrt/irrt/ndarray/indexing.hpp @@ -68,13 +68,9 @@ namespace indexing /** * @brief Perform ndarray "basic indexing" (https://numpy.org/doc/stable/user/basics.indexing.html#basic-indexing) * - * This is function very similar to performing `dst_ndarray = src_ndarray[indices]` in Python (where the variables - * can all be found in the parameter of this function). + * This function is very similar to performing `dst_ndarray = src_ndarray[indices]` in Python. * - * In other words, this function takes in an ndarray (`src_ndarray`), index it with `indices`, and return the - * indexed array (by writing the result to `dst_ndarray`). - * - * This function also does proper assertions on `indices`. + * This function also does proper assertions on `indices` to check for out of bounds access. * * # Notes on `dst_ndarray` * The caller is responsible for allocating space for the resulting ndarray.