# frozen_string_literal: true require_relative 'determiner' module Zenlish module WClasses # Distributive determiner (aka distributive adjective) is a class of determiner, # that is used to refer to individual members within a group or within a pair. # Examples: each, every, either, neither. class DistributiveDeterminer < Determiner end # class end # module end # module