Skip to content

Commit 62ca6ff

Browse files
committed
more fixes
1 parent 0efb0c1 commit 62ca6ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/translator/phrase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function nounPhrase(
9999
...modifier.nounPreposition!.noun as English.NounPhrase & {
100100
type: "simple";
101101
},
102-
preposition: [nounAsPreposition(
102+
prepositions: [nounAsPreposition(
103103
noun,
104104
modifier.nounPreposition!.preposition,
105105
)],

src/translator/predicate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function associatedPredicate(
149149
}
150150
return verbObject.map((verbObject) => ({
151151
...verbObject,
152-
preposition: [...verbObject.prepositions, ...prepositions],
152+
prepositions: [...verbObject.prepositions, ...prepositions],
153153
}));
154154
}
155155
export function predicate(

0 commit comments

Comments
 (0)