From a91da061ba8b37cc8dc3c3f758c5d9fb2a40634d Mon Sep 17 00:00:00 2001 From: frankenbeanies Date: Fri, 16 Sep 2016 16:19:18 -0400 Subject: [PATCH] Updated Readme --- Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index ca45e2a..cbe2eaa 100644 --- a/Readme.md +++ b/Readme.md @@ -20,14 +20,14 @@ Simply create a new Food2Fork object, passing your API Key to the constructor. Y Food2Fork api = new Food2Fork("YOUR_API_KEY_HERE"); ``` -Food2Fork.getRecipe(int id) ---------------------------- +Food2Fork.getRecipe(String id) +------------------------------ Get a Recipe object by id. (input) ```java -Recipe recipe = api.getRecipe(29159); +Recipe recipe = api.getRecipe("29159"); ``` Food2Fork.search(String query, char sort, int page)