diff --git a/spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/Regex.java b/spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/Regex.java
index b6ae27942d44..bb7921805a35 100644
--- a/spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/Regex.java
+++ b/spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/Regex.java
@@ -19,17 +19,15 @@
import java.util.regex.Pattern;
/**
- * Regular Expressions for image names and references based on those found in the Docker
- * codebase.
+ * Regular Expressions for image names and references based on those found in the CNCF
+ * Distribution Project codebase.
*
* @author Scott Frederick
* @author Phillip Webb
- * @see Docker
- * grammar reference
- * @see Docker grammar
- * implementation
+ * @see OCI
+ * Image grammar reference
+ * @see OCI Image
+ * grammar implementation
* @see How
* are Docker image names parsed?