pharo-rdbms / Pharo-SQLite3

Community-owned official SQLite3 binding for Pharo
MIT License
22 stars 20 forks source link

Fix typo in SQLite3Cursor>>#nextOfClass: #18

Closed Handagotes closed 2 years ago

Handagotes commented 4 years ago

Line 19:

1 to: msgs count do: [ :c |

Possible fix:

1 to: msgs size do: [ :c |
gcotelli commented 2 years ago

Fixed in #51