From 5bb5de395ee11a2b20ebd7990bc8ae8198995a50 Mon Sep 17 00:00:00 2001
From: Sean Gilligan
Date: Thu, 20 Jun 2019 17:06:05 -0700
Subject: [PATCH] AbstractBlockChain: Fix typos in JavaDoc.
---
core/src/main/java/org/bitcoinj/core/AbstractBlockChain.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/bitcoinj/core/AbstractBlockChain.java b/core/src/main/java/org/bitcoinj/core/AbstractBlockChain.java
index 19422223..579b6d99 100644
--- a/core/src/main/java/org/bitcoinj/core/AbstractBlockChain.java
+++ b/core/src/main/java/org/bitcoinj/core/AbstractBlockChain.java
@@ -69,8 +69,8 @@ import static com.google.common.base.Preconditions.*;
* we say it is an orphan chain. Orphan chains can occur when blocks are solved and received during the initial block
* chain download, or if we connect to a peer that doesn't send us blocks in order.
*
- * A reorganize occurs when the blocks that make up the best known chain changes. Note that simply adding a
- * new block to the top of the best chain isn't as reorganize, but that a reorganize is always triggered by adding
+ *
A reorganize occurs when the blocks that make up the best known chain change. Note that simply adding a
+ * new block to the top of the best chain isn't a reorganize, but that a reorganize is always triggered by adding
* a new block that connects to some other (non best head) block. By "best" we mean the chain representing the largest
* amount of work done.
*