Identify the error in the following code block intended to replace missing values in the sqft column of DataFrame storesDF with the value 30,000:
storesDF.na.fill(30000, col("sqft"))
Sample of DataFrame storesDF:
storeld sqft
0 43161
1 51200
2 null
3 78367
4 null
...