aboutsummaryrefslogtreecommitdiff
path: root/docs/CONTRIBUTE
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-08-13 11:53:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-08-13 11:53:33 +0000
commite9812c53cb0d4bbbd70c9351f0ea9697bb203935 (patch)
tree13a4f9ea6c0579e9d4170b81fb24d916544c102f /docs/CONTRIBUTE
parented98565963c95094127559d1be241d6312dba072 (diff)
strip trailing whitespace
Diffstat (limited to 'docs/CONTRIBUTE')
-rw-r--r--docs/CONTRIBUTE14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/CONTRIBUTE b/docs/CONTRIBUTE
index be2d8e320..4747bd5d9 100644
--- a/docs/CONTRIBUTE
+++ b/docs/CONTRIBUTE
@@ -1,7 +1,7 @@
- _ _ ____ _
- ___| | | | _ \| |
- / __| | | | |_) | |
- | (__| |_| | _ <| |___
+ _ _ ____ _
+ ___| | | | _ \| |
+ / __| | | | |_) | |
+ | (__| |_| | _ <| |___
\___|\___/|_| \_\_____|
To Think About When Contributing Source Code
@@ -138,15 +138,15 @@ How To Make a Patch
If you have modified a single file, try something like:
- diff -u undmodified-file.c my-changed-one.c > my-fixes.diff
+ diff -u unmodified-file.c my-changed-one.c > my-fixes.diff
If you have modified several files, possibly in different directories, you
can use diff recursively:
- diff -ur curl-original-dir curl-modfied-sources-dir > my-fixes.diff
+ diff -ur curl-original-dir curl-modified-sources-dir > my-fixes.diff
The GNU diff and GNU patch tools exist for virtually all platforms, including
- all kinds of unixes and Windows:
+ all kinds of Unixes and Windows:
For unix-like operating systems: