Skip to content

Commit

Permalink
more consistent boolean examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 29, 2013
1 parent 93560be commit e4679a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/Transaction/WebSocket.pm
Expand Up @@ -481,14 +481,14 @@ L<Mojo::Transaction> and implements the following new ones.
=head2 compressed
my $bool = $ws->compressed;
$ws = $ws->compressed(1);
$ws = $ws->compressed($bool);
Compress messages with C<permessage-deflate> extension.
=head2 context_takeover
my $bool = $ws->context_takeover;
$ws = $ws->context_takeover(0);
$ws = $ws->context_takeover($bool);
Reuse LZ77 sliding window for C<permessage-deflate> extension, defaults to
true.
Expand Down

0 comments on commit e4679a5

Please sign in to comment.