Skip to content

Commit 45035df

Browse files
authored
chore: remove repetitive words (#11015)
Signed-off-by: xinhangzhou <[email protected]>
1 parent ab490d0 commit 45035df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Style-checks are done for each pull request and installing this code style confi
2020
# Eclipse:
2121

2222
The Eclipse code formatter style is stored in the `eclipse.gradle` file and gets imported automatically.
23-
In case the formatter style needs to be adapted, configure it and export in in eclipse.
23+
In case the formatter style needs to be adapted, configure it and export in eclipse.
2424

2525
1. Right click on the eclipse project "JabRef"
2626
2. Select "Export > General > Preferences"

src/main/java/org/jabref/logic/importer/fetcher/DBLPFetcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void doPostCleanup(BibEntry entry) {
6868
FieldFormatterCleanups cleanups = new FieldFormatterCleanups(true,
6969
List.of(
7070
new FieldFormatterCleanup(StandardField.TIMESTAMP, new ClearFormatter()),
71-
// unescape the the contents of the URL field, e.g., some\_url\_part becomes some_url_part
71+
// unescape the contents of the URL field, e.g., some\_url\_part becomes some_url_part
7272
new FieldFormatterCleanup(StandardField.URL, new LayoutFormatterBasedFormatter(new RemoveLatexCommandsFormatter()))
7373
));
7474
cleanups.applySaveActions(entry);

src/main/java/org/jabref/model/entry/BibEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ public Optional<String> getFieldOrAlias(Field field) {
572572
}
573573

574574
/**
575-
* Return the LaTeX-free contents of the given field or its alias an an Optional
575+
* Return the LaTeX-free contents of the given field or its alias an Optional
576576
* <p>
577577
* For details see also {@link #getFieldOrAlias(Field)}
578578
*

src/main/java/org/jabref/model/entry/field/OrFields.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Represents a choice between two (or more) fields or any combination of them.
1212
* <p>
13-
* Example is that a BibEntry requires either an author or an editor, but both can be be present.
13+
* Example is that a BibEntry requires either an author or an editor, but both can be present.
1414
*/
1515
public class OrFields implements Comparable<OrFields> {
1616

0 commit comments

Comments
 (0)