Skip to content

Commit

Permalink
fixed bel(l)ow typos
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Apr 5, 2022
1 parent e03df38 commit ec19c2d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
dist: trusty
language: java

#skips default install - see script bellow
#skips default install - see script below
install: true

cache:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected String getBody(ModelEvent event, AccountActivationNotifierType configu
Task task, OperationResult result) {

StringBuilder body = new StringBuilder();
String message = "Your accounts was successfully created. To activate your accounts, please click on the link bellow.";
String message = "Your accounts was successfully created. To activate your accounts, please click on the link below.";
body.append(message).append("\n\n").append(createConfirmationLink(getUser(event), configuration, result)).append("\n\n");

FocusType owner = (FocusType) event.getRequesteeObject();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected String getSubject(ModelEvent event, PasswordResetNotifierType configur
protected String getBody(ModelEvent event, PasswordResetNotifierType generalNotifierType, String transport, Task task,
OperationResult result) {
UserType userType = getUser(event);
return "Did you request password reset? If yes, click on the link bellow \n\n"
return "Did you request password reset? If yes, click on the link below \n\n"
+ createConfirmationLink(userType, generalNotifierType, result);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ private Set<URI> scanClassPathForBundles() {
en = ConnectorFactoryConnIdImpl.class.getClassLoader().getResources("META-INF/MANIFEST.MF");
} catch (IOException ex) {
LOGGER.debug("Error during reading content from class path");
// TODO return? or NPE on the while bellow?
// TODO return? or NPE on the while below?
}

// Find which one is ICF connector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ public void test163ReplacingProjectionRefs()
.oid(refTargetOid2.toString()).relation(refRelation2),
new ObjectReferenceType() // nonexistent anyway
.oid(refTargetOid3.toString()).relation(refRelation2),
// like add bellow, the deletion will be "narrowed" out and ignored
// like add below, the deletion will be "narrowed" out and ignored
new ObjectReferenceType()
.oid(refTargetOid3.toString()).relation(refRelation1))
.add(new ObjectReferenceType().oid(refTargetOid3.toString())
Expand Down

0 comments on commit ec19c2d

Please sign in to comment.