This commit is contained in:
Jakub Roztocil 2020-08-19 10:25:47 +02:00
parent 1813cf6156
commit 69445c106c

View File

@ -703,7 +703,7 @@ for form requests without any files:
.. code-block:: bash
$ http --form --multipart --offline example.org/ hello=world
$ http --form --multipart --offline example.org hello=world
.. code-block:: http
@ -718,12 +718,12 @@ for form requests without any files:
world
--c31279ab254f40aeb06df32b433cbccb--
By default, HTTPie uses a random unique string as the boundary. You may use
the ``--boundary`` option to specify a custom boundary string instead:
By default, HTTPie uses a random unique string as the boundary but you can use
``--boundary`` to specify a custom string instead:
.. code-block:: bash
$ http --form --multipart --boundary=XOXO --offline example.org/ hello=world
$ http --form --multipart --boundary=XOXO --offline example.org hello=world
.. code-block:: http
@ -743,7 +743,7 @@ bit, HTTPie will add the boundary value (specified or generated) to the header
automatically:
.. code-block:: bash
http --form --multipart --boundary=XOXO --offline example.org/ hello=world Content-Type:love/letter
http --form --multipart --boundary=XOXO --offline example.org hello=world Content-Type:love/letter
.. code-block:: http