2.8: Set_Sequence_Is_Start_Of_Section() Issue

Was testing out set_sequence_is_start_of_section() at the terminal and encountered the following.

– Access to pattern sequence sections. When the ‘is_start_of_section flag’ is
– set for a sequence pos, a section ranges from this pos to the next pos
– which starts a section, or till the end of the song when there are no others.
renoise.song().sequencer:sequence_is_start_of_section(sequence_index)
→ [boolean]
renoise.song().sequencer:set_sequence_is_start_of_section(sequence_index)

print(renoise.song().sequencer:sequence_is_start_of_section(4))
false
renoise.song().sequencer:set_sequence_is_start_of_section(4)
*** No matching overload found, candidates:
*** void set_sequence_is_start_of_section(PatternSequence&,int,bool)
*** stack traceback:
*** [C]: in function ‘set_sequence_is_start_of_section’
*** [string “renoise.song().sequencer:set_sequence_is_st…”]:1: in main chunk

A bug in the documentation. Must pass the state (a boolean as well):
renoise.song().sequencer:set_sequence_is_start_of_section(4, true)