Commit b801b453 authored by Viktor Szakats's avatar Viktor Szakats
Browse files

whitespace fixes

- replace tabs with spaces where possible
- remove line ending spaces
- remove double/triple newlines at EOF
- fix a non-UTF-8 character
- cleanup a few indentations/line continuations
  in manual examples

Closes https://github.com/curl/curl/pull/3037
parent e407e79c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@CMAKE_CONFIGURABLE_FILE_CONTENT@
+0 −2
Original line number Diff line number Diff line
@@ -77,5 +77,3 @@ sponsor](https://opencollective.com/curl#sponsor)]
<a href="https://opencollective.com/curl/sponsor/7/website" target="_blank"><img src="https://opencollective.com/curl/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/curl/sponsor/8/website" target="_blank"><img src="https://opencollective.com/curl/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/curl/sponsor/9/website" target="_blank"><img src="https://opencollective.com/curl/sponsor/9/avatar.svg"></a>

+0 −1
Original line number Diff line number Diff line
@@ -90,4 +90,3 @@ revert if need be.

Remove all global-cache related code from curl around April 2019 (might be
7.66.0).
+0 −1
Original line number Diff line number Diff line
@@ -88,4 +88,3 @@ cmake-gui
        GUI.  Once you have selected all the options you want, click the
        "Generate" button.
        6. Run the native build tool that you used CMake to generate.
+9 −9
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ UPLOADING

SMB / SMBS

        curl -T file.txt -u "domain\username:passwd" 
        curl -T file.txt -u "domain\username:passwd" \
             smb://server.example.com/share/

 HTTP
@@ -326,7 +326,7 @@ POST (HTTP)

  To post to this, you enter a curl command line like:

        curl -d "user=foobar&pass=12345&id=blablabla&ding=submit"  (continues)
        curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" \
             http://www.formpost.com/getthis/post.cgi


Loading