Skip to content

Commit

Permalink
fix linting error + typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroesb committed Aug 22, 2024
1 parent b26723e commit bf80c49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion repository-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Change to the correct directory:
cd repository-test-services
```

Use docker compose to deploy both services simultaniously:
Use docker compose to deploy both services simultaneously:

```sh
docker compose up
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ private Map<Integer, String> mapExperiments(
.addText(otherMaterial.getName());
experimentElement
.addElement("STUDY_REF")
.addAttribute("refname", study.getTitle() + "-" + randomSubmissionIdentifier);
.addAttribute(
"refname",
study.getTitle() + "-" + randomSubmissionIdentifier);

final Element designElement =
experimentElement.addElement("DESIGN");
Expand Down

0 comments on commit bf80c49

Please sign in to comment.