diff --git a/include/ArrayAccessor.h b/include/ArrayAccessor.h index 43ac2c2445c30e2806ba53443f9bf985ae0341f6..df004558a58dfa35febcea025d2a4ba53f2ef878 100644 --- a/include/ArrayAccessor.h +++ b/include/ArrayAccessor.h @@ -46,7 +46,8 @@ namespace ChimeraTK { VariableNetworkNode operator>>(const VariableNetworkNode &otherNode) { return node >> otherNode; } - /** Replace with other ScalarRegisterAccessor */ + + /** Replace with other ArrayAccessor */ void replace(ArrayAccessor<UserType> &&other) { operator=(std::move(other)); } diff --git a/include/ScalarAccessor.h b/include/ScalarAccessor.h index 9fb43afdb3ce9749d9e442c2a219a454b1ce39f2..b5d1fa7d2f7ef109ef8c8615d2a74c2e0a65d3e3 100644 --- a/include/ScalarAccessor.h +++ b/include/ScalarAccessor.h @@ -48,7 +48,7 @@ namespace ChimeraTK { return node >> otherNode; } - /** Replace with other ScalarRegisterAccessor */ + /** Replace with other ScalarAccessor */ void replace(ScalarAccessor<UserType> &&other) { operator=(std::move(other)); }