lib/zenlish/wclasses/subordinating_conjunction.rb in zenlish-0.2.05 vs lib/zenlish/wclasses/subordinating_conjunction.rb in zenlish-0.2.06

- old
+ new

@@ -1,16 +1,18 @@ +# frozen_string_literal: true + require_relative 'conjunction' module Zenlish module WClasses # A subordinating conjunction is a word or phrase that connects a dependent # clause to a main clause. The subordinating conjunction indicates how the # dependent clause adds informative value to the main clause. For instance, - # by signaling a cause-and-effect relation, a shift in time or place between - # the two clauses. - # Common subordinating conjunctions: after, although, as, because, before, - # how, if, once, since, than, that, though, till, until, when, where, + # by signaling a cause-and-effect relation, a shift in time or place between + # the two clauses. + # Common subordinating conjunctions: after, although, as, because, before, + # how, if, once, since, than, that, though, till, until, when, where, # whether, while - class SubordinatingConjunction < WordClass + class SubordinatingConjunction < WordClass end # class end # module end # module