Skip to content

Commit

Permalink
fix(pronoun): order of sama/samo (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph authored Jan 13, 2025
1 parent a7e7169 commit 5f37ae3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/pronoun/__tests__/__snapshots__/personal.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -631,33 +631,33 @@ exports[`pronoun personal 2219 1`] = `
"casesSingular": {
"acc": [
"samogo / sam",
"samų",
"samogo / samo",
"samų",
],
"dat": [
"samomu",
"samoj",
"samomu",
"samoj",
],
"gen": [
"samogo",
"samoj",
"samogo",
"samoj",
],
"ins": [
"samym",
"samojų",
"samym",
"samojų",
],
"loc": [
"samom",
"samoj",
"samom",
"samoj",
],
"nom": [
"sam",
"sama",
"samo",
"sama",
],
},
"type": "adjective",
Expand Down
12 changes: 6 additions & 6 deletions src/pronoun/declensionPronoun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ export function declensionPronoun(
return {
type: 'adjective',
casesSingular: {
nom: ['sam', 'sama', 'samo'],
acc: ['samogo / sam', 'samų', 'samogo / samo'],
gen: ['samogo', 'samoj', 'samogo'],
loc: ['samom', 'samoj', 'samom'],
dat: ['samomu', 'samoj', 'samomu'],
ins: ['samym', 'samojų', 'samym'],
nom: ['sam', 'samo', 'sama'],
acc: ['samogo / sam', 'samogo / samo', 'samų'],
gen: ['samogo', 'samogo', 'samoj'],
loc: ['samom', 'samom', 'samoj'],
dat: ['samomu', 'samomu', 'samoj'],
ins: ['samym', 'samym', 'samojų'],
},
casesPlural: {
nom: ['sami / same', 'same'],
Expand Down

0 comments on commit 5f37ae3

Please sign in to comment.