Skip to content

Commit

Permalink
Fix: fix some typos in project (#1355)
Browse files Browse the repository at this point in the history
  • Loading branch information
psxjoy authored Oct 10, 2024
1 parent f123f19 commit 971530f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public boolean needsDOM() {
}

/**
* Might be used to clean any resources assosciated with this {@link ParseFilter}.- See {@link
* Might be used to clean any resources associated with this {@link ParseFilter}.- See {@link
* IBolt#cleanup()} for more details.
*/
public void cleanup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* Assigns one or more tags to the metadata of a document based on its URL matching patterns defined
* in a JSON resource file.
*
* <p>The resource file must specifify regular expressions for inclusions but also for exclusions
* <p>The resource file must specify regular expressions for inclusions but also for exclusions
* e.g.
*
* <pre>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ static URL fixPureQueryTargets(final URL base, String target) throws MalformedUR
*
* <p>If the target contains params (i.e. ';xxxx') information then the target params
* information is assumed to be correct and any base params information is ignored. If the base
* contains params information but the tareget does not, then the params information is moved to
* contains params information but the target does not, then the params information is moved to
* the target allowing it to be correctly determined by the java.net.URL class.
*
* @param base The base URL.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void cleanup() {
try {
connection.close();
} catch (SolrServerException | IOException e) {
LOG.warn("Faled to cloase connection", e);
LOG.warn("Failed to close connection", e);
}
}

Expand Down

0 comments on commit 971530f

Please sign in to comment.