Skip to content

Commit

Permalink
md lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonad committed Aug 31, 2019
1 parent c23bcb6 commit e78d84e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.v13.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,12 @@ position 0.
<dd></dd>
<b><code>length:number</code></b>
<dd></dd>
<b><code>forEach(function(value:object|boolean|Array|string|number|Uint8Array|Y.Type, index:number, array: Y.Array))</code></b>
<b>
<code>
forEach(function(value:object|boolean|Array|string|number|Uint8Array|Y.Type,
index:number, array: Y.Array))
</code>
</b>
<dd></dd>
<b><code>map(function(T, number, YArray):M):Array&lt;M&gt;</code></b>
<dd></dd>
Expand Down
2 changes: 1 addition & 1 deletion src/types/YText.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import * as object from 'lib0/object.js'
* @param {any} b
* @return {boolean}
*/
const equalAttrs = (a, b) => a === b || (typeof a === 'object' && typeof b === 'object' && a && b && object.equalFlat(a, b))
const equalAttrs = (a, b) => a === b || (typeof a === 'object' && typeof b === 'object' && a && b && object.equalFlat(a, b))

export class ItemListPosition {
/**
Expand Down

0 comments on commit e78d84e

Please sign in to comment.