HBASE-25076 fix typo in MasterRegion java doc (#2432)

Co-authored-by: niuyulin <niuyulin@xiaomi.com>

Signed-off-by: Jan Hentschel <janh@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/region/MasterRegion.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/region/MasterRegion.java
index aa1b9d1..81da59d 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/region/MasterRegion.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/region/MasterRegion.java
@@ -79,9 +79,9 @@
  * Notice that, you can use different root file system and WAL file system. Then the above directory
  * will be on two file systems, the root file system will have the data directory while the WAL
  * filesystem will have the WALs directory. The archived HFile will be moved to the global HFile
- * archived directory with the {@link MasterRegionParams#archivedWalSuffix()} suffix. The archived
+ * archived directory with the {@link MasterRegionParams#archivedHFileSuffix()} suffix. The archived
  * WAL will be moved to the global WAL archived directory with the
- * {@link MasterRegionParams#archivedHFileSuffix()} suffix.
+ * {@link MasterRegionParams#archivedWalSuffix()} suffix.
  */
 @InterfaceAudience.Private
 public final class MasterRegion {