Fixing second-person verb misconjugation due to missing breaks in switch statement
This commit is contained in:
parent
cb1302c6f6
commit
1c022e5180
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "metamorpov",
|
||||
"title": "MetamorPOV",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"description": "Enables customization of reader-insert stories by replacing author-provided hooks such as Y/n, pov/s, and vrb/do/present/.",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": 3,
|
||||
"name": "MetamorPOV",
|
||||
"author": "Jean Viscogliosi-Pate",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
|
||||
"description": "Enables customization of reader-insert stories by replacing author-provided hooks such as Y/n, pov/s, and vrb/do/present/.",
|
||||
|
||||
|
|
|
@ -310,10 +310,13 @@ function verbMethod(node, searchTerm, options) {
|
|||
} else {
|
||||
povIndex = getPovIndex(options.pov, options);
|
||||
}
|
||||
break;
|
||||
case "b":
|
||||
povIndex = getPovIndex(options.pov, options);
|
||||
break;
|
||||
case "N": /* N and n are always third-person */
|
||||
povIndex = getPovIndex("third-singular", null);
|
||||
break;
|
||||
case "n":
|
||||
povIndex = getPovIndex("third", options);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue