Skip to content

Commit ca25fcd

Browse files
committed
style(json-crdt-extensions): 💄 run Prettier
1 parent 5d64e69 commit ca25fcd

File tree

1 file changed

+2
-2
lines changed
  • src/json-crdt-extensions/peritext/point

1 file changed

+2
-2
lines changed

src/json-crdt-extensions/peritext/point/Point.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class Point<T = string> implements Pick<Stateful, 'refresh'>, Printable {
5858
* @returns Returns 0 if the two points are equal, -1 if this point is less
5959
* than the other point, and 1 if this point is greater than the other
6060
* point.
61-
*
61+
*
6262
* @todo Rename to `cmp`.
6363
*/
6464
public compare(other: Point<T>): -1 | 0 | 1 {
@@ -76,7 +76,7 @@ export class Point<T = string> implements Pick<Stateful, 'refresh'>, Printable {
7676
* @returns Returns 0 if the two points are equal, negative if this point is
7777
* less than the other point, and positive if this point is greater
7878
* than the other point.
79-
*
79+
*
8080
* @todo Rename to `cmpSpatial`.
8181
*/
8282
public compareSpatial(other: Point<T>): number {

0 commit comments

Comments
 (0)