Commit a136cdea authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

CODE_STYLE: indend example code

... to make it look nicer in markdown outputa
parent f7bb1fc1
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -107,8 +107,6 @@ Rather than test a conditional value such as a bool against TRUE or FALSE, a
pointer against NULL or != NULL and an int against zero or not zero in
if/while conditions we prefer:

CURLcode result = CURLE_OK;

    result = do_something();
    if(!result) {
      /* something went wrong */