diff --git a/api/src/main/java/io/kafbat/ui/serdes/builtin/ProtobufFileSerde.java b/api/src/main/java/io/kafbat/ui/serdes/builtin/ProtobufFileSerde.java
index 9955438bb..2c0939c03 100644
--- a/api/src/main/java/io/kafbat/ui/serdes/builtin/ProtobufFileSerde.java
+++ b/api/src/main/java/io/kafbat/ui/serdes/builtin/ProtobufFileSerde.java
@@ -435,8 +435,9 @@ private Map
This is needed because imports in Protobuf use forward slashes (`/`) for the imports - * which causes a conflict with Windows paths. Ie: `language/language.proto` is converted to `language\language.proto`
+ *This is needed because imports in Protobuf use forward slashes (`/`) + * which causes a conflict with Windows paths. For example,`language/language.proto` + * would be converted to `language\language.proto` in Windows causing a resolution exception
* * @param path the file path to standardize; must not be {@code null}. * @return the standardized file path with forward slashes if running on Windows, or the original path otherwise.