From 37805526bff28096a5ca91294904529bb9bfdbf2 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Mon, 4 Sep 2017 09:34:27 +0800 Subject: [PATCH] httpie: fix backslash syntax --- httpie.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/httpie.md b/httpie.md index 4d1954e4f..6f5bc4813 100644 --- a/httpie.md +++ b/httpie.md @@ -10,14 +10,14 @@ updated: 2017-09-04 ```bash $ http POST example.com/posts/3 \ - Origin:example.com # : HTTP headers - name="John Doe" \ # = string - q=="search" \ # == URL parameters (?q=search) - age:=29 \ # := for non-strings - list:='[1,3,4]' # := json - file@file.bin \ # @ attach file - token=@token.txt \ # =@ read from file (text) - user:=@user.json \ # :=@ read from file (json) + Origin:example.com \ # : HTTP headers + name="John Doe" \ # = string + q=="search" \ # == URL parameters (?q=search) + age:=29 \ # := for non-strings + list:='[1,3,4]' # := json + file@file.bin \ # @ attach file + token=@token.txt \ # =@ read from file (text) + user:=@user.json # :=@ read from file (json) ``` ### Forms