We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb2437 commit d79d4ceCopy full SHA for d79d4ce
src/translator/preposition.ts
@@ -16,7 +16,7 @@ export function preposition(
16
return IterableResult.combine(
17
prepositionAsWord(preposition.preposition),
18
multipleModifiers(preposition.modifiers)
19
- .filterMap((modifier) =>
+ .map((modifier) =>
20
modifier.type === "adverbial"
21
? (modifier.inWayPhrase == null ? modifier.adverb : throwError(
22
new FilteredError(
@@ -34,7 +34,7 @@ export function preposition(
34
andParticle: null,
35
includeVerb: false,
36
})
37
- .filterMap((phrases) =>
+ .map((phrases) =>
38
phrases.type === "noun"
39
? phrases.noun
40
: throwError(new FilteredError(`${phrases.type} as indirect object`))
0 commit comments