Skip to content

Commit 4d91ec8

Browse files
committed
Add a lowercase form of "-updateMorphoFeatures" for use in EditNode
1 parent 861f72f commit 4d91ec8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/edu/stanford/nlp/semgraph/semgrex/ssurgeon/Ssurgeon.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@ public Collection<SsurgeonWordlist> getResources() {
398398
public static final String NAME_ARG = "-name";
399399
public static final String POSITION_ARG = "-position";
400400
public static final String UPDATE_MORPHO_FEATURES = "-updateMorphoFeatures";
401+
public static final String UPDATE_MORPHO_FEATURES_LOWER = "-updatemorphofeatures";
401402

402403

403404
// args for Ssurgeon edits, allowing us to not
@@ -496,6 +497,7 @@ private static SsurgeonArgs parseArgsBox(String args, Map<String, String> additi
496497
argsBox.position = argsValue;
497498
break;
498499
case UPDATE_MORPHO_FEATURES:
500+
case UPDATE_MORPHO_FEATURES_LOWER:
499501
argsBox.updateMorphoFeatures = argsValue;
500502
break;
501503
default:

0 commit comments

Comments
 (0)