Return original default parts of speech to avoid confusion

This commit is contained in:
Robbie Antenesse 2019-07-14 11:03:19 -06:00
parent 6fed4dd4fb
commit 8f864fda67
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ export const DEFAULT_DICTIONARY = {
name: 'New', name: 'New',
specification: 'Dictionary', specification: 'Dictionary',
description: 'A new dictionary.', description: 'A new dictionary.',
partsOfSpeech: ['Noun', 'Adjective', 'Verb'], partsOfSpeech: ['Noun', 'Adjective', 'Verb', 'Adverb', 'Preposition', 'Pronoun', 'Conjunction'],
alphabeticalOrder: [], alphabeticalOrder: [],
details: { details: {
phonology: { phonology: {

View File

@ -11,7 +11,7 @@ class Dictionary {
$this->token = new Token(); $this->token = new Token();
$this->defaults = array( $this->defaults = array(
'partsOfSpeech' => 'Noun,Adjective,Verb', 'partsOfSpeech' => 'Noun,Adjective,Verb,Adverb,Preposition,Pronoun,Conjunction',
); );
} }