lib/vips/operationboolean.rb in ruby-vips-2.0.13 vs lib/vips/operationboolean.rb in ruby-vips-2.0.14
- old
+ new
@@ -1,14 +1,14 @@
module Vips
- # The type of boolean operation to perform on an image. See
- # {Image#boolean}.
- #
- # * ':and' bitwise and
- # * ':or' bitwise or
- # * ':eor' bitwise eor
- # * ':lshift' shift left n bits
- # * ':rshift' shift right n bits
+ # The type of boolean operation to perform on an image. See
+ # {Image#boolean}.
+ #
+ # * ':and' bitwise and
+ # * ':or' bitwise or
+ # * ':eor' bitwise eor
+ # * ':lshift' shift left n bits
+ # * ':rshift' shift right n bits
- class OperationBoolean < Symbol
- end
+ class OperationBoolean < Symbol
+ end
end