aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-diff/json-diff.vue
diff options
context:
space:
mode:
authorGravatar Marvin <33938500+marvin-j97@users.noreply.github.com> 2023-06-23 15:23:47 +0200
committerGravatar GitHub <noreply@github.com> 2023-06-23 15:23:47 +0200
commit9526ed832473dd543c870de45e1a2ea3b13791af (patch)
treea9330f26746626d97d1a4b2b31793d2344ea64ed /src/tools/json-diff/json-diff.vue
parent7068610438a8e0caed8e85c855f5db04dea5effd (diff)
downloadit-tools-9526ed832473dd543c870de45e1a2ea3b13791af.tar.gz
it-tools-9526ed832473dd543c870de45e1a2ea3b13791af.tar.zst
it-tools-9526ed832473dd543c870de45e1a2ea3b13791af.zip
fix(typos): fixed more typos & uppercase JSON (#475)
* fix(About): typo * uppercase json & typos
Diffstat (limited to 'src/tools/json-diff/json-diff.vue')
-rw-r--r--src/tools/json-diff/json-diff.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/json-diff/json-diff.vue b/src/tools/json-diff/json-diff.vue
index 2ef3de0..2e57c50 100644
--- a/src/tools/json-diff/json-diff.vue
+++ b/src/tools/json-diff/json-diff.vue
@@ -23,8 +23,8 @@ const jsonValidationRules = [
<c-input-text
v-model:value="rawLeftJson"
:validation-rules="jsonValidationRules"
- label="Your first json"
- placeholder="Paste your first json here..."
+ label="Your first JSON"
+ placeholder="Paste your first JSON here..."
rows="20"
multiline
test-id="leftJson"
@@ -34,8 +34,8 @@ const jsonValidationRules = [
<c-input-text
v-model:value="rawRightJson"
:validation-rules="jsonValidationRules"
- label="Your json to compare"
- placeholder="Paste your json to compare here..."
+ label="Your JSON to compare"
+ placeholder="Paste your JSON to compare here..."
rows="20"
multiline
test-id="rightJson"