From 2d7db84504e498254f5c24915a83c1e73fc3e0c6 Mon Sep 17 00:00:00 2001 From: Christopher Dembia Date: Tue, 13 Dec 2016 13:34:10 -0800 Subject: [PATCH] Improve connectee_name property comment. --- OpenSim/Common/ComponentConnector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Common/ComponentConnector.h b/OpenSim/Common/ComponentConnector.h index f2637ffe0e..4b53e3652a 100644 --- a/OpenSim/Common/ComponentConnector.h +++ b/OpenSim/Common/ComponentConnector.h @@ -856,7 +856,7 @@ class Input : public AbstractInput { /** @cond */ \ PropertyIndex PropertyIndex_connector_##cname##_connectee_name { \ this->template constructConnector(#cname, \ - "Path to a Component to satisfy the Connector '" \ + "Path to a Component that satisfies the Connector '" \ #cname "' of type " #T " (description: " comment ").") \ }; \ /** @endcond */ \ @@ -968,7 +968,7 @@ PropertyIndex Class::constructConnector_##cname() { \ using T = _connector_##cname##_type; \ std::string typeStr = T::getClassName(); \ return this->template constructConnector(#cname, \ - "Path to a Component to satisfy the Connector '" \ + "Path to a Component that satisfies the Connector '" \ #cname "' of type " + typeStr + "."); \ } /// @}