We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efb0c1 commit 62ca6ffCopy full SHA for 62ca6ff
src/translator/phrase.ts
@@ -99,7 +99,7 @@ function nounPhrase(
99
...modifier.nounPreposition!.noun as English.NounPhrase & {
100
type: "simple";
101
},
102
- preposition: [nounAsPreposition(
+ prepositions: [nounAsPreposition(
103
noun,
104
modifier.nounPreposition!.preposition,
105
)],
src/translator/predicate.ts
@@ -149,7 +149,7 @@ function associatedPredicate(
149
}
150
return verbObject.map((verbObject) => ({
151
...verbObject,
152
- preposition: [...verbObject.prepositions, ...prepositions],
+ prepositions: [...verbObject.prepositions, ...prepositions],
153
}));
154
155
export function predicate(
0 commit comments