diff --git a/include/xlnt/workbook/worksheet_iterator.hpp b/include/xlnt/workbook/worksheet_iterator.hpp
index f575dc7c..3e0165fb 100644
--- a/include/xlnt/workbook/worksheet_iterator.hpp
+++ b/include/xlnt/workbook/worksheet_iterator.hpp
@@ -64,17 +64,17 @@ public:
worksheet_iterator(const worksheet_iterator &) = default;
///
- /// Assigns the iterator so that it points to the same worksheet in the same workbook.
+ /// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
///
worksheet_iterator &operator=(const worksheet_iterator &) = default;
///
- /// Copy constructs a worksheet iterator from another iterator.
+ /// Move constructs a worksheet iterator from a temporary iterator.
///
worksheet_iterator(worksheet_iterator &&) = default;
///
- /// Assigns the iterator so that it points to the same worksheet in the same workbook.
+ /// Move assign the iterator from a temporary iterator
///
worksheet_iterator &operator=(worksheet_iterator &&) = default;
@@ -170,17 +170,17 @@ public:
const_worksheet_iterator(const const_worksheet_iterator &) = default;
///
- /// Assigns the iterator so that it points to the same worksheet in the same workbook.
+ /// Copy assigns the iterator so that it points to the same worksheet in the same workbook.
///
const_worksheet_iterator &operator=(const const_worksheet_iterator &) = default;
///
- /// Move constructs a worksheet iterator from another iterator.
+ /// Move constructs a worksheet iterator from a temporary iterator.
///
const_worksheet_iterator(const_worksheet_iterator &&) = default;
///
- /// Assigns the iterator from a temporary
+ /// Move assigns the iterator from a temporary iterator
///
const_worksheet_iterator &operator=(const_worksheet_iterator &&) = default;