When referring to technical concepts in documentation and code comments, use proper full names and consistent terminology: 1. Use full official names instead of abbreviations or shortened forms (e.g., "Kubernetes" instead of "K8s")
When referring to technical concepts in documentation and code comments, use proper full names and consistent terminology:
Example:
// Incorrect:
// You can @Autowire JdbcTemplate directly into your beans when working with K8s
// Correct:
// You can autowire JdbcTemplate directly into your beans when working with Kubernetes
Maintaining consistent terminology improves documentation readability and prevents confusion, especially for developers who are new to the project or technology.
Enter the URL of a public GitHub repository