From 4833df3825f3e1fcdf994fcb58ab4bb1c298a4c7 Mon Sep 17 00:00:00 2001 From: Bas Broek Date: Mon, 20 Feb 2017 21:01:22 +0100 Subject: [PATCH] Add missing syntax highlighting to README --- Readme.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.markdown b/Readme.markdown index 83b41d4..8abf287 100644 --- a/Readme.markdown +++ b/Readme.markdown @@ -59,7 +59,7 @@ let sam = try User(jsonRepresentation: dictionary) You can also simply do the following since user is `JSONDeserializable`. -``` +``` swift let sam: User = try decode(dictionary) ```