From 1d31b971c60f6c11779c7755d88ec00b60aeabca Mon Sep 17 00:00:00 2001 From: Bruno Bigras Date: Tue, 4 Oct 2016 17:01:27 -0400 Subject: [PATCH] syntax highlighting in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab24ace..fd5cb2b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ $ cargo test MagickWand has some global state that needs to be initialized prior to using the library, but fortunately Rust makes handling this pretty easy. In the example below, we read in an image from a file and resize it to fit a square of 240 by 240 pixels, then convert the image to JPEG. -``` +```rust use magick_rust::{MagickWand, magick_wand_genesis}; use std::sync::{Once, ONCE_INIT};