diff --git a/src/java/org/apache/poi/ss/SpreadsheetVersion.java b/src/java/org/apache/poi/ss/SpreadsheetVersion.java
index 45594d3c2..200175d04 100644
--- a/src/java/org/apache/poi/ss/SpreadsheetVersion.java
+++ b/src/java/org/apache/poi/ss/SpreadsheetVersion.java
@@ -28,8 +28,8 @@ public enum SpreadsheetVersion {
/**
* Excel97 format aka BIFF8
*
- * - The total number of available columns is 256 (2^8)
* - The total number of available rows is 64k (2^16)
+ * - The total number of available columns is 256 (2^8)
* - The maximum number of arguments to a function is 30
* - Number of conditional format conditions on a cell is 3
* - Number of cell styles is 4000
@@ -42,8 +42,8 @@ public enum SpreadsheetVersion {
* Excel2007
*
*
- * - The total number of available columns is 16K (2^14)
* - The total number of available rows is 1M (2^20)
+ * - The total number of available columns is 16K (2^14)
* - The maximum number of arguments to a function is 255
* - Number of conditional format conditions on a cell is unlimited
* (actually limited by available memory in Excel)