s3: Fix typos.
authormwolson_admin <mwolson_admin@deleuze.hcoop.net>
Wed, 25 Jun 2008 04:59:34 +0000 (00:59 -0400)
committermwolson_admin <mwolson_admin@deleuze.hcoop.net>
Wed, 25 Jun 2008 04:59:34 +0000 (00:59 -0400)
s3

diff --git a/s3 b/s3
index 9132845..4f26efe 100755 (executable)
--- a/s3
+++ b/s3
@@ -165,7 +165,7 @@ s3_put() {
   # $1 = remote bucket to put it into
   # $2 = remote name to put
   # $3 = file to put.  This must be present if $2 is.
-  $ $4 = bandwidth limit.
+  # $4 = bandwidth limit.
   s3_curl PUT "${1}" "${2}" "${3:-${2}}" "${4}"
   return $?
 } 
@@ -175,7 +175,7 @@ s3_get() {
   # $2 = remote file to get
   # $3 = local file to get into. Will be overwritten if it exists.
   #      If this contains a path, that path must exist before calling this.
-  $ $4 = bandwidth limit.
+  # $4 = bandwidth limit.
   s3_curl GET "${1}" "${2}" "${3:-${2}}" "${4}"
   return $?
 }