docs: translate comments to English

This commit translates all French comments in the kmer filtering and set management code to English, improving code readability and maintainability for international collaborators.
This commit is contained in:
Eric Coissac
2026-02-05 16:35:38 +01:00
parent 12ca62b06a
commit a43e6258be
5 changed files with 122 additions and 122 deletions

View File

@@ -11,7 +11,7 @@ import (
"gopkg.in/yaml.v3"
)
// MetadataFormat représente le format de sérialisation des métadonnées
// MetadataFormat represents the metadata serialization format
type MetadataFormat int
const (
@@ -20,7 +20,7 @@ const (
FormatJSON
)
// String retourne l'extension de fichier pour le format
// String returns the file extension for the format
func (f MetadataFormat) String() string {
switch f {
case FormatTOML: