dataset.getValue sample code

This is the sample code for dataset.getValue()

		//assuming the variable dataset contains a dataset
var dataAtCol1Row1 = dataset.getValue(1, 1); //useful to get out single values

Might consider changing the variable name to dataAtRow1Col1. While doubtful anybody would be confused because of the other text associated with this, just seems would be best for clarity. Or even better:

		//assuming the variable dataset contains a dataset
var dataAtRow2Col1 = dataset.getValue(2, 1); //useful to get out single values

Will be so in Servoy 3.0b2, thanks for reporting