From f8501f96bec801e15b347ebdb184722010db8448 Mon Sep 17 00:00:00 2001
From: Martin Hierholzer <martin.hierholzer@desy.de>
Date: Thu, 28 Sep 2017 10:30:51 +0200
Subject: [PATCH] fixed a comment

---
 include/ArrayAccessor.h  | 3 ++-
 include/ScalarAccessor.h | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/ArrayAccessor.h b/include/ArrayAccessor.h
index 43ac2c24..df004558 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 9fb43afd..b5d1fa7d 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));
       }
-- 
GitLab