From 9fa5c517d49de5863d205fc95842fc999a345871 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 9 Sep 2019 13:04:17 -0400 Subject: [PATCH] bt2: fix _seek_beginning -> _user_seek_beginning in comment Change-Id: I93aaea82db86e1e8e37b49f5c26662c82337cb97 Signed-off-by: Simon Marchi --- src/bindings/python/bt2/bt2/message_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/bt2/bt2/message_iterator.py b/src/bindings/python/bt2/bt2/message_iterator.py index 51410189..09bff7a4 100644 --- a/src/bindings/python/bt2/bt2/message_iterator.py +++ b/src/bindings/python/bt2/bt2/message_iterator.py @@ -160,7 +160,7 @@ class _UserMessageIterator(_MessageIterator): # # - If the iterator has a _user_can_seek_beginning attribute, # read it and use that result. - # - Otherwise, the presence or absence of a `_seek_beginning` + # - Otherwise, the presence or absence of a `_user_seek_beginning` # method indicates whether the iterator can seek beginning. if hasattr(self, '_user_can_seek_beginning'): can_seek_beginning = self._user_can_seek_beginning -- 2.34.1