lib/async/channel.rb in grumlin-0.11.0 vs lib/async/channel.rb in grumlin-0.12.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module Async
# Channel is a wrapper around Async::Queue that provides
# a protocol and handy tools for passing data, exceptions and closing.
- # It is designed to be used with only one publisher and one subscriber
+ # It is designed to be used only with one publisher and one subscriber
class Channel
class ChannelError < StandardError; end
class ChannelClosedError < ChannelError; end