
diff --git a/apps/live-paper-docs/src/Introduction.js b/apps/live-paper-docs/src/Introduction.js
index 0100c217..efa83c5c 100644
--- a/apps/live-paper-docs/src/Introduction.js
+++ b/apps/live-paper-docs/src/Introduction.js
@@ -26,7 +26,7 @@ export default class Introduction extends React.Component {
The Problem
Where to find underlying data?
- Consider that you came across a scientfic publication that piqued your interest.
+ Consider that you came across a scientific publication that piqued your interest.
It might be because:
- the experimental data produced by the authors could aid your own scientific work, or
diff --git a/apps/live-paper-platform/src/utils.js b/apps/live-paper-platform/src/utils.js
index 7d84bbe8..f8b24194 100644
--- a/apps/live-paper-platform/src/utils.js
+++ b/apps/live-paper-platform/src/utils.js
@@ -20,7 +20,7 @@ export function compareArrayoOfObjectsByOrder(a, b) {
export function replaceNullWithEmptyStrings(param) {
if (param === null) {
- // Note: null is also object, but explictly comared before testing for object below
+ // Note: null is also object, but explicitly comared before testing for object below
return "";
} else if (typeof param === "string") {
return param;