Commit cb787b70 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed some typos in documentation

parent 0f15ed16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ This release includes the following changes:
 o pop3: Added support for sasl digest-md5 authentication
 o pop3: Added support for apop authentication
 o Added support for Schannel (Native Windows) SSL/TLS encryption [2]
 o Added support for Dwarin SSL (Native Mac OS X and iOS) [6]
 o Added support for Darwin SSL (Native Mac OS X and iOS) [6]

This release includes the following bugfixes:

+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ BUGS
  your problem and to work on a fix (if we agree it truly is a problem).

  Lots of problems that appear to be libcurl problems are actually just abuses
  of the libcurl API or other malfunctions in your applications. It is adviced
  of the libcurl API or other malfunctions in your applications. It is advised
  that you run your problematic program using a memory debug tool like
  valgrind or similar before you post memory-related or "crashing" problems to
  us.
+2 −2
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@

3.6 Please don't send pull requests

 With git (and expecially github) it is easy and tempting to send a pull
 With git (and especially github) it is easy and tempting to send a pull
 request to one or more people in the curl project to have changes merged this
 way instead of mailing patches to the curl-library mailing list.

@@ -294,7 +294,7 @@

 - Commit messages can be tweaked and changed if merged locally instead of
   using github. Merges directly on github requires the changes to be perfect
   already, which they seldomly are.
   already, which they seldom are.

 - Merges on github prevents rebases and even enforces --no-ff which is a git
   style we don't otherwise use in the project
+2 −2
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ FAQ

    libcurl is highly portable, it builds and works identically on numerous
    platforms, including Solaris, NetBSD, FreeBSD, OpenBSD, Darwin, HPUX,
    IRIX, AIX, Tru64, Linux, UnixWare, HURD, Windows, Amiga, OS/2, BeOs, Mac
    IRIX, AIX, Tru64, Linux, UnixWare, HURD, Windows, Amiga, OS/2, BeOS, Mac
    OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS, Symbian, OSF,
    Android, Minix, IBM TPF and more...

@@ -807,7 +807,7 @@ FAQ

    4.5.3 "403 Forbidden"

    The server understood the request, but is refusing to fulfill it.
    The server understood the request, but is refusing to fulfil it.
    Authorization will not help and the request SHOULD NOT be repeated.

    4.5.4 "404 Not Found"
+2 −2
Original line number Diff line number Diff line
@@ -26,12 +26,12 @@ libcurl supports
 - compiles on win32 (reported builds on 40+ operating systems)
 - selectable network interface for outgoing traffic
 - IPv6 support on unix and Windows
 - persistant connections
 - persistent connections
 - socks5 support
 - supports user name + password in proxy environment variables
 - operations through proxy "tunnel" (using CONNECT)
 - supports large files (>2GB and >4GB) both upload/download
 - replacable memory functions (malloc, free, realloc, etc)
 - replaceable memory functions (malloc, free, realloc, etc)
 - asynchronous name resolving (*6)
 - both a push and a pull style interface

Loading