renoise / tools

Scripting tools written by the Renoise team
MIT License
285 stars 43 forks source link

Correct shuffle text #134

Closed esaruoho closed 6 years ago

esaruoho commented 6 years ago

just some more typo / missing phrase shuffle fixes

bjorn-nesby commented 6 years ago

The API reference shouldn't specify properties in the context of a selected_xx Otherwise, it would end up having to duplicate all properties and methods for each phrase, track, etc.

esaruoho commented 6 years ago

@bjorn-nesby i've removed the selected_phrase from it and instead just retain this change: original (wrong)

renoise.song().instruments[].phrases.shuffle

suggested fix:

renoise.song().instruments[].phrases[].shuffle

hope this PR can be accepted as it won't work without the []