From d8427de4584e3faaeb8bd5531de92dadacf99eba Mon Sep 17 00:00:00 2001 From: se <63814960+se030@users.noreply.github.com> Date: Sat, 29 Jul 2023 17:46:32 +0900 Subject: [PATCH] Remove unnecessary brackets --- design/data-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/data-structure.md b/design/data-structure.md index beeba1d1e..b736810a2 100644 --- a/design/data-structure.md +++ b/design/data-structure.md @@ -44,7 +44,7 @@ JSON-like data strucutres are used when editing JSON-like documents. - `Primitive`: represents primitive data like `string`, `number`, `boolean`, `null`, etc. - `Object`: represents [object type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object) of JavaScript. Just like JavaScript, you can use `Object` as [hash table](https://en.wikipedia.org/wiki/Hash_table). -- `Array`: represents [array type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array) of JavaScript. You can also use `Array` as [list](). +- `Array`: represents [array type](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array) of JavaScript. You can also use `Array` as [list](https://en.wikipedia.org/wiki/List_(abstract_data_type)). - `Text`: represents text with style attributes in rich text editors such as [Quill](https://github.com/yorkie-team/yorkie-js-sdk/blob/main/examples/quill.html). Users can express styles such as bold, italic, and underline to text content. Of course, it can represent just a plain text in text-based editors such as [CodeMirror](https://github.com/yorkie-team/yorkie-js-sdk/blob/main/examples/index.html). It supports collaborative editing; multiple users can modify parts of the contents without conflict. JSON-like data structures can be edited through proxies. For example: