GUIDE.md in rspreadsheet-0.4.8 vs GUIDE.md in rspreadsheet-0.4.9

- old
+ new

@@ -41,9 +41,12 @@ workbook.save(any_io_object) # file can be saved to any IO like object as well ```` ### Date and Time OpenDocument and ruby have different models of date, time and datetime. Ruby containg three different objects. Time and DateTime cover all cases, Date covers dates only. OpenDocument distinguishes two groups - time of a day (time) and everything else (date). To simplify things a little we return cell values containg time of day as Time object and cell values containg datetime of date as DateTime. I am aware that this is very arbitrary choice, but it is very practical. This way and to some extend the types of values from OpenDocument are preserved when read from files, beeing acted upon and written back to spreadshhet. +### Merged cells +Even when a cell spans more rows and collumns, you must access by coordinates of its topleft corner. In fact, the "hidden" cells under are still there and their content is usually preserved. + ## Examples * [basic functionality](https://gist.github.com/gorn/42e33d086d9b4fda10ec) * [extended examples](https://gist.github.com/gorn/b432e6a69e82628349e6) of lots of alternative syntax