From 2e90144760d22ce5a69bd06c7409256e4bddf9fd Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Mon, 4 Sep 2017 10:31:20 +0800 Subject: [PATCH] httpie: fix backslash syntax again --- httpie.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpie.md b/httpie.md index 6f5bc4813..043efb900 100644 --- a/httpie.md +++ b/httpie.md @@ -14,7 +14,7 @@ $ http POST example.com/posts/3 \ name="John Doe" \ # = string q=="search" \ # == URL parameters (?q=search) age:=29 \ # := for non-strings - list:='[1,3,4]' # := json + list:='[1,3,4]' \ # := json file@file.bin \ # @ attach file token=@token.txt \ # =@ read from file (text) user:=@user.json # :=@ read from file (json)