[Doc] Fix some incorrect uses of a/an

This commit is contained in:
A Thousand Ships 2024-03-13 12:43:07 +01:00
parent 006f5bc11c
commit 24c9d442e9
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7
22 changed files with 29 additions and 29 deletions

View file

@ -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">