diff --git a/Frontend/assets/scripts/tools/json.js b/Frontend/assets/scripts/tools/json.js
index 008e7b0..00d68ae 100644
--- a/Frontend/assets/scripts/tools/json.js
+++ b/Frontend/assets/scripts/tools/json.js
@@ -22,7 +22,7 @@ function formatAndValidateJson(errorElement) {
hljs.highlightElement(input);
const end = new Date();
- processInfo.innerHTML = "Validation and formatting time: " + (end.getMilliseconds() - start.getMilliseconds()) + "ms";
+ processInfo.innerHTML = "Computed in " + (end.getMilliseconds() - start.getMilliseconds()) + "ms";
})
.catch((error) => {
processInfo.innerHTML = "" + error + "";
@@ -54,7 +54,7 @@ function minimizeJson(errorElement) {
hljs.highlightElement(input);
const end = new Date();
- processInfo.innerHTML = "Validation and formatting time: " + (end.getMilliseconds() - start.getMilliseconds()) + "ms";
+ processInfo.innerHTML = "Computed in " + (end.getMilliseconds() - start.getMilliseconds()) + "ms";
})
.catch((error) => {
processInfo.innerHTML = "" + error + "";