Merge branch 'iter-end' into 'master'

Fix off-by-one error in documentation for xcb_*_end

See merge request xorg/lib/libxcb!62
This commit is contained in:
Lassi Pulkkinen 2025-07-24 20:29:46 +00:00
commit aed00debfe

View File

@ -1626,13 +1626,13 @@ def _c_iterator(self, name):
_h('') _h('')
_h('/**') _h('/**')
_h(' * Return the iterator pointing to the last element') _h(' * Return the iterator pointing to the position after the last element')
_h(' * @param i An %s', self.c_iterator_type) _h(' * @param i An %s', self.c_iterator_type)
_h(' * @return The iterator pointing to the last element') _h(' * @return The iterator pointing to the position after the last element')
_h(' *') _h(' *')
_h(' * Set the current element in the iterator to the last element.') _h(' * Set the iterator to point to the position after the last')
_h(' * The member rem is set to 0. The member data points to the') _h(' * element. The member rem is set to 0. The member data points')
_h(' * last element.') _h(' * to the position after the last element.')
_h(' */') _h(' */')
_c('') _c('')
_hc('xcb_generic_iterator_t') _hc('xcb_generic_iterator_t')