From 701fcc42ba322b7844e2395639a663c9777768eb Mon Sep 17 00:00:00 2001 From: Zach Elkins Date: Thu, 14 Mar 2024 14:35:42 -0700 Subject: [PATCH] Fixe h4 formatting in src/dom/README.md Markdown parsers expect headers to have a space between the hash symbols and the text. The missing space prevented `####Struct Example` from being rendered as an h4. --- src/dom/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dom/README.md b/src/dom/README.md index cbc0c177..3601d349 100644 --- a/src/dom/README.md +++ b/src/dom/README.md @@ -368,7 +368,7 @@ listSame1.equals(["Mercury", "Venus", "Earth", "Mars"]); // returns true listSame1.equals(["Mercury", "Venus", "Earth"]); // returns false because the lists differ with one element "Mars" ``` -####Struct Example +#### Struct Example ```javascript let structSame1: Value = load( "foo::bar::{" +