Skip to content

Commit

Permalink
adds missing closing parenthesis in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Whitney committed Mar 23, 2012
1 parent 6444ad3 commit 97a2f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Need to combine several options?
Want to composite two images? Super easy! (Aka, put a watermark on!)

image = Image.open("original.png")
result = image.composite(Image.open("watermark.png", "jpg") do |c|
result = image.composite(Image.open("watermark.png", "jpg")) do |c|
c.gravity "center"
end
result.write "my_output_file.jpg"
Expand Down

0 comments on commit 97a2f8a

Please sign in to comment.