Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #7425

Merged
merged 2 commits into from
Feb 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
- We changed connect timeouts for server requests to 30 seconds in general and 5 seconds for GROBID server (special) and improved user notifications on connection issues. [7026](https://github.com/JabRef/jabref/pull/7026)
- We changed the order of the library tab context menu items. [#7171](https://github.com/JabRef/jabref/issues/7171)
- We changed the way linked files are opened on Linux to use the native openFile method, compatible with confined packages. [7037](https://github.com/JabRef/jabref/pull/7037)
- We refined the entry preview to show the full names of authors and editors, to list the editor only if no author is present, have the year ealier. [#7083](https://github.com/JabRef/jabref/issues/7083)
- We refined the entry preview to show the full names of authors and editors, to list the editor only if no author is present, have the year earlier. [#7083](https://github.com/JabRef/jabref/issues/7083)
k3KAW8Pnf7mkmdSMPHz27 marked this conversation as resolved.
Show resolved Hide resolved

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions docs/adr/0016-mutable-preferences-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ To create an immutable preferences object every time seems to be a waste of time

## Considered Options

* Create a new object every time a preferences object should be altered by a with*-method, similar to a builder.
* Alter the existing object and return it.
* Alter the existing object and return it (by a `with*` -method, similar to a builder, but changing the object at hand).
* Create a new object every time a preferences object should be altered.

## Decision Outcome

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ default List<BibEntry> performSearch(String searchQuery) throws FetcherException
try {
return this.performSearch(parser.parse(searchQuery, NO_EXPLICIT_FIELD));
} catch (QueryNodeParseException e) {
throw new FetcherException("An error occured when parsing the query");
throw new FetcherException("An error occurred when parsing the query");
}
}
}