[Doc] Fix some incorrect uses of a/an
This commit is contained in:
parent
006f5bc11c
commit
24c9d442e9
22 changed files with 29 additions and 29 deletions
|
|
@ -14,7 +14,7 @@
|
|||
# Check that file exists.
|
||||
if not FileAccess.file_exists(path):
|
||||
return
|
||||
# Start a SHA-256 context.
|
||||
# Start an SHA-256 context.
|
||||
var ctx = HashingContext.new()
|
||||
ctx.start(HashingContext.HASH_SHA256)
|
||||
# Open the file to hash.
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
{
|
||||
return;
|
||||
}
|
||||
// Start a SHA-256 context.
|
||||
// Start an SHA-256 context.
|
||||
var ctx = new HashingContext();
|
||||
ctx.Start(HashingContext.HashType.Sha256);
|
||||
// Open the file to hash.
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
<return type="int" enum="Error" />
|
||||
<param index="0" name="type" type="int" enum="HashingContext.HashType" />
|
||||
<description>
|
||||
Starts a new hash computation of the given [param type] (e.g. [constant HASH_SHA256] to start computation of a SHA-256).
|
||||
Starts a new hash computation of the given [param type] (e.g. [constant HASH_SHA256] to start computation of an SHA-256).
|
||||
</description>
|
||||
</method>
|
||||
<method name="update">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue