diff options
author | Josh Blum <josh@joshknows.com> | 2011-02-15 10:35:55 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-02-15 10:35:55 -0800 |
commit | 153f2575bb077c66f7ce5ba5d7911eea6fc37b98 (patch) | |
tree | 1f1b072f654015a731a5bce3a3ebc120db3da395 /host | |
parent | 9bc6fbe685579d505e8352e1de5e118a5a3ea163 (diff) | |
download | uhd-153f2575bb077c66f7ce5ba5d7911eea6fc37b98.tar.gz uhd-153f2575bb077c66f7ce5ba5d7911eea6fc37b98.tar.bz2 uhd-153f2575bb077c66f7ce5ba5d7911eea6fc37b98.zip |
uhd: fix typo in ref vector docs
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/types/ref_vector.hpp | 2 |
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()) |