summaryrefslogtreecommitdiff
path: root/libavutil/sha.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-06-30 15:38:06 +0000
committerMåns Rullgård <mans@mansr.com>2010-06-30 15:38:06 +0000
commit49bd8e4b843d9a92fdb8ef4361a551a1e019c65d (patch)
tree3004e5605d2b5328b3cba95b884327f9bcfd3aca /libavutil/sha.h
parent38e23c88db9a6b1ce15a2eca431b824f65b214bc (diff)
Fix grammar errors in documentation
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/sha.h')
-rw-r--r--libavutil/sha.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/sha.h b/libavutil/sha.h
index 5a20230a37..543f5a1949 100644
--- a/libavutil/sha.h
+++ b/libavutil/sha.h
@@ -28,7 +28,7 @@ extern const int av_sha_size;
struct AVSHA;
/**
- * Initializes SHA-1 or SHA-2 hashing.
+ * Initialize SHA-1 or SHA-2 hashing.
*
* @param context pointer to the function context (of size av_sha_size)
* @param bits number of bits in digest (SHA-1 - 160 bits, SHA-2 224 or 256 bits)
@@ -37,7 +37,7 @@ struct AVSHA;
int av_sha_init(struct AVSHA* context, int bits);
/**
- * Updates hash value.
+ * Update hash value.
*
* @param context hash function context
* @param data input data to update hash with
@@ -46,7 +46,7 @@ int av_sha_init(struct AVSHA* context, int bits);
void av_sha_update(struct AVSHA* context, const uint8_t* data, unsigned int len);
/**
- * Finishes hashing and output digest value.
+ * Finish hashing and output digest value.
*
* @param context hash function context
* @param digest buffer where output digest value is stored