diff --git a/glide-core/src/cluster_scan_container.rs b/glide-core/src/cluster_scan_container.rs
index 20c464a186..38cb1ec76d 100644
--- a/glide-core/src/cluster_scan_container.rs
+++ b/glide-core/src/cluster_scan_container.rs
@@ -1,5 +1,5 @@
/**
- * Copyright GLIDE-for-Redis Project Contributors - SPDX Identifier: Apache-2.0
+ * Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
use logger_core::log_debug;
use nanoid::nanoid;
diff --git a/java/DEVELOPER.md b/java/DEVELOPER.md
index 58fba9129a..743a9be57e 100644
--- a/java/DEVELOPER.md
+++ b/java/DEVELOPER.md
@@ -243,8 +243,8 @@ Refer to https://valkey.io/docs/topics/transactions/ for more details about how
[BaseTransaction.java](https://github.com/aws/glide-for-redis/blob/main/java/client/src/main/java/glide/api/models/BaseTransaction.java) and the methods within the command interfaces will both contain documentation on how the command operates.
In the command interface each command's javadoc should contain:
-- Detail on when the Redis started supporting the command (if it wasn't initially implemented in 6.0.0 or before).
-- A link to the Redis documentation.
+- Detail on when Valkey started supporting the command (if it wasn't initially implemented in 6.0.0 or before).
+- A link to the Valkey documentation.
- Information about the function parameters.
- Any glide-core implementation details, such as how glide-core manages default routing for the command. Reference this [link](https://github.com/aws/glide-for-redis/blob/4df0dd939b515dbf9da0a00bfca6d3ad2f27440b/java/client/src/main/java/glide/api/commands/SetBaseCommands.java#L119) for an example.
- The command's return type. In the [BaseTransaction.java](https://github.com/aws/glide-for-redis/blob/main/java/client/src/main/java/glide/api/models/BaseTransaction.java) file, include "Command Response" before specifying the return type.
diff --git a/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java b/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
index 94907d2725..2d849fa37b 100644
--- a/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
+++ b/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
@@ -30,7 +30,7 @@ public interface GenericClusterCommands {
* href="https://github.com/aws/glide-for-redis/wiki/General-Concepts#custom-command">Valkey
* GLIDE Wiki for details on the restrictions and limitations of the custom command API.
* @param args Arguments for the custom command including the command name.
- * @return Response from Redis containing an Object.
+ * @return The returning value depends on the executed command.
* @example
*