From e6cd90c8260831a980ffeabf5bfc5ad13e73cec2 Mon Sep 17 00:00:00 2001 From: Christopher Adams Date: Wed, 26 Feb 2014 10:13:09 -0500 Subject: [PATCH] Fix example request URL and JSON --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 97d1821..270c06a 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,14 @@ The CLSI is based on a JSON API. (Note that valid JSON should not contain any comments like the example below). - POST /project/ + POST /project//compile ```javascript { - compile: { + "compile": { "options": { // Which compiler to use. Can be latex, pdflatex, xelatex or lualatex - "compiler": "lualatex" + "compiler": "lualatex", // How many seconds to wait before killing the process. Default is 60. "timeout": 40 },