Skip to content

Commit

Permalink
chore: fix quotes formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bombillazo committed Feb 2, 2024
1 parent 45a5813 commit ff24495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query/decoders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function decodeBox(value: string): Box {
const [a, b] = value.match(/\(.*?\)/g) || [];

return {
a: decodePoint(a || ''),
a: decodePoint(a || ""),
b: decodePoint(b),
};
}
Expand Down Expand Up @@ -224,7 +224,7 @@ export function decodeLineSegment(value: string): LineSegment {
.match(/\(.*?\)/g) || [];

return {
a: decodePoint(a || ''),
a: decodePoint(a || ""),
b: decodePoint(b),
};
}
Expand Down

0 comments on commit ff24495

Please sign in to comment.