From d0a0cb1542bdfabcf550ec8f0509720f9fc211d2 Mon Sep 17 00:00:00 2001
From: Ajay Majukar <31211096+ajaymajukar@users.noreply.github.com>
Date: Thu, 8 May 2025 11:54:32 +0530
Subject: [PATCH] Fix: Rename 'hkey' to 'hKey' to match standard casing in
similar APIs like RegOpenKeyExA
Ensures parameter naming consistency across registry API documentation.
---
sdk-api-src/content/winreg/nf-winreg-reggetvaluea.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sdk-api-src/content/winreg/nf-winreg-reggetvaluea.md b/sdk-api-src/content/winreg/nf-winreg-reggetvaluea.md
index f0f5daf89c0d..5bfc91ba62c2 100644
--- a/sdk-api-src/content/winreg/nf-winreg-reggetvaluea.md
+++ b/sdk-api-src/content/winreg/nf-winreg-reggetvaluea.md
@@ -63,7 +63,7 @@ Retrieves the type and data for the specified registry value.
## -parameters
-### -param hkey [in]
+### -param hKey [in]
A handle to an open registry key. The key must have been opened with the KEY_QUERY_VALUE access right. For more information, see
Registry Key Security and Access Rights.
@@ -87,11 +87,11 @@ This handle is returned by the
### -param lpSubKey [in, optional]
-The path of a registry key relative to the key specified by the *hkey* parameter. The registry value will be retrieved from this subkey.
+The path of a registry key relative to the key specified by the *hKey* parameter. The registry value will be retrieved from this subkey.
The path is not case sensitive.
-If this parameter is **NULL** or an empty string, "", the value will be read from the key specified by *hkey* itself.
+If this parameter is **NULL** or an empty string, "", the value will be read from the key specified by *hKey* itself.
### -param lpValue [in, optional]
@@ -335,7 +335,7 @@ An application typically calls Registry Virtualization and 32-bit and 64-bit Application Data in the Registry.