Related to this (Inadequate Documentation), in demograpics spec, the following age span for twenties seems to be wrong:
export const AGES = {
‘’: ‘’,
teens: ‘< 19’,
twenties: ‘19 - 29’,
thirties: ‘30 - 39’,
Twenties should be from 20 to 29 according to Cambridge dictionary (which is in accordance with what most people think of twenties). So it should be the following:
export const AGES = {
‘’: ‘’,
teens: ‘< 20’,
twenties: ‘20 - 29’,
thirties: ‘30 - 39’,
Note: Although I couldn’t come up with a better word but teens usually refers to ages between 13 (thirteen) to 19 (nineteen) since they end with -teen and … Cambridge dictionary seems to agree.