summaryrefslogtreecommitdiff
path: root/doc/style.txt
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2025-12-03 01:07:07 +0200
committerVille Skyttä <ville.skytta@iki.fi>2025-12-03 01:07:07 +0200
commit94648d60ac291e12453d76e350db1a59ed10862e (patch)
tree4978a557f7673393aa06eb166d06edbc4e47f08a /doc/style.txt
parent6b128124271e94bdb0f4e7850d9286170d712b04 (diff)
Grammar fixes
Diffstat (limited to 'doc/style.txt')
-rw-r--r--doc/style.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/style.txt b/doc/style.txt
index cd5f8b677..03d7abe99 100644
--- a/doc/style.txt
+++ b/doc/style.txt
@@ -57,7 +57,7 @@ almost always designates a change in ownership rules).
* Pass by value or pass by reference should borrow the object from the
caller
- * Pass by non-const reference may be used to indicate a OUT type variable
+ * Pass by non-const reference may be used to indicate an OUT type variable
* Pass by pointer (except in the case where the pointer is really an array)
should be used when the object will be retained or ownership will be
transferred. Ownership transference should be rare and noted by a comment.