Skip to content

Commit

Permalink
fix: typo in failed remote context error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bobeal committed Feb 27, 2024
1 parent 40f7a17 commit 43027c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ private void fetch(final String context, final URI baseUrl) throws JsonLdError {

// 5.2.5.1.
} catch (JsonLdError e) {
throw new JsonLdError(JsonLdErrorCode.LOADING_REMOTE_CONTEXT_FAILED, "There wa a problem encountered loading a remote context [" + contextUri + "]", e);
throw new JsonLdError(JsonLdErrorCode.LOADING_REMOTE_CONTEXT_FAILED, "There was a problem encountered loading a remote context [" + contextUri + "]", e);
}

if (remoteImport == null) {
Expand Down

0 comments on commit 43027c2

Please sign in to comment.