Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
R167 committed Feb 15, 2024
1 parent 949e38e commit 22d6d8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/utils/ipa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export const MANNERS = [
"Lateral approximant",
] as const;

export type PlaceOfArt = typeof PLACES[number];
export type MannerOfArt = typeof MANNERS[number];
export type PlaceOfArt = (typeof PLACES)[number];
export type MannerOfArt = (typeof MANNERS)[number];

// The sounds that are either impossible or not used
export const IMPOSSIBLE = "_";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/ipaDescription.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IMPOSSIBLE, MANNERS, NOT_USED, PLACES, PULMONICS } from "./ipa";

type Pulmonics = Exclude<typeof PULMONICS[number][number], typeof NOT_USED | typeof IMPOSSIBLE>;
type Pulmonics = Exclude<(typeof PULMONICS)[number][number], typeof NOT_USED | typeof IMPOSSIBLE>;

const describePulmonics = (): Map<Pulmonics, string> => {
const defs = new Map<Pulmonics, string>();
Expand Down

0 comments on commit 22d6d8d

Please sign in to comment.