-
-
Notifications
You must be signed in to change notification settings - Fork 1
Fix typos and indentation #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 14 commits
4f381ae
4450aa4
ee9201d
44e069f
6fcc7a6
165339f
411312a
2223a45
64aa229
1338824
40f5e12
906a32b
6badb49
2e8a37d
02017e0
71221c1
4a84269
cbf1007
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,12 +8,11 @@ This example demonstrates how to define a `Section` using DynamicUI's JSON schem | |||||
| "type": "Section", | ||||||
| "title": "Section Title", | ||||||
| "children": [ | ||||||
| { | ||||||
| "type": "Text", | ||||||
| "title": "Content goes here", | ||||||
| } | ||||||
| ] | ||||||
| } | ||||||
| { | ||||||
| "type": "Text", | ||||||
| "title": "Content goes here", | ||||||
| } | ||||||
| ] | ||||||
|
||||||
| ] | |
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,11 +7,11 @@ This example demonstrates how to define a `VSplitView` using DynamicUI's JSON sc | |
| { | ||
| "type": "VSplitView", | ||
| "children": [ | ||
| { | ||
| "type": "Text", | ||
| "title": "Content goes here", | ||
| } | ||
| ] | ||
| { | ||
| "type": "Text", | ||
| "title": "Content goes here", | ||
| } | ||
| ] | ||
| } | ||
| } | ||
|
||
| ] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The closing bracket for the "children" array is indented with 8 spaces, but it should be indented with 7 spaces to align with the opening of the "children" property on line 9. The closing bracket should match the indentation of the line that opened the array.