diff --git a/llama-index-core/llama_index/core/indices/knowledge_graph/retrievers.py b/llama-index-core/llama_index/core/indices/knowledge_graph/retrievers.py
index 38cd852fd32a0f8ccf512041614fcfee5e641c5a..91bd96719272beb7e23fe4b702fa4d44914d8576 100644
--- a/llama-index-core/llama_index/core/indices/knowledge_graph/retrievers.py
+++ b/llama-index-core/llama_index/core/indices/knowledge_graph/retrievers.py
@@ -52,7 +52,7 @@ class KGRetrieverMode(str, Enum):
         KEYWORD ("keyword"): Default query mode, using keywords to find triplets.
         EMBEDDING ("embedding"): Embedding mode, using embeddings to find
             similar triplets.
-        HYBRID ("hybrid"): Hyrbid mode, combining both keywords and embeddings
+        HYBRID ("hybrid"): Hybrid mode, combining both keywords and embeddings
             to find relevant triplets.
     """