From b8fdcfb44a3b113af5c0d38e3f15522937088f55 Mon Sep 17 00:00:00 2001 From: Ian Kerins Date: Tue, 19 Dec 2023 16:34:48 -0500 Subject: [PATCH] Change to text, as a language is required --- files/en-us/web/api/console/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/api/console/index.md b/files/en-us/web/api/console/index.md index 867acbf13ed3de9..aa725c0f5425ad0 100644 --- a/files/en-us/web/api/console/index.md +++ b/files/en-us/web/api/console/index.md @@ -89,7 +89,7 @@ console.log(someObject); The output looks something like this: -``` +```text {str:"Some text", id:5} ``` @@ -105,7 +105,7 @@ console.info("My first car was a", car, ". The object is:", someObject); The output will look like this: -``` +```text My first car was a Dodge Charger. The object is: {str:"Some text", id:5} ```