diff --git a/src/java/org/apache/poi/ss/usermodel/Cell.java b/src/java/org/apache/poi/ss/usermodel/Cell.java
index ca7738a32..1c5000639 100644
--- a/src/java/org/apache/poi/ss/usermodel/Cell.java
+++ b/src/java/org/apache/poi/ss/usermodel/Cell.java
@@ -354,7 +354,7 @@ public interface Cell {
* Gets the address of this cell
*
* @return A1
style address of this cell
- * @since 3.14beta2
+ * @since 3.14beta1
*/
CellAddress getAddress();
diff --git a/src/java/org/apache/poi/ss/usermodel/Sheet.java b/src/java/org/apache/poi/ss/usermodel/Sheet.java
index aa3794332..055072d26 100644
--- a/src/java/org/apache/poi/ss/usermodel/Sheet.java
+++ b/src/java/org/apache/poi/ss/usermodel/Sheet.java
@@ -1123,15 +1123,15 @@ public interface Sheet extends Iterable {
* Return location of the active cell, e.g. A1
.
*
* @return the location of the active cell.
- * @since 3.14beta2
+ * @since 3.14beta1
*/
public CellAddress getActiveCell();
/**
* Sets location of the active cell
*
- * @param addr the location of the active cell, e.g. A1
.
- * @since 3.14beta2
+ * @param address the location of the active cell, e.g. A1
.
+ * @since 3.14beta1
*/
public void setActiveCell(CellAddress address);
}