summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/ref_vector.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/ref_vector.hpp b/host/include/uhd/types/ref_vector.hpp
index 0ae301647..2928cb150 100644
--- a/host/include/uhd/types/ref_vector.hpp
+++ b/host/include/uhd/types/ref_vector.hpp
@@ -43,7 +43,7 @@ public:
/*!
* Create a reference vector from a std::vector container.
* Therefore: rv[n] == vec[n] and rv.size() == vec.size()
- * \param range a const reference to an std::vector
+ * \param vec a const reference to an std::vector
*/
template <typename Vector> ref_vector(const Vector &vec):
_ptr(T()), _mem(_mem_t(&vec.front())), _size(vec.size())