diff --git a/docs/examples/entity_resolution.md b/docs/examples/entity_resolution.md
index 360d1a7..c1543a1 100644
--- a/docs/examples/entity_resolution.md
+++ b/docs/examples/entity_resolution.md
@@ -85,7 +85,7 @@ from graphviz import Digraph
def generate_html_label(entity: Entity) -> str:
rows = [f"
| {prop.key} | {prop.resolved_absolute_value} |
" for prop in entity.properties]
table_rows = "".join(rows)
- return f"| {entity.entity_title} |
{table_rows}
>"
+ return f"<| {entity.entity_title} |
{table_rows}
>"
def generate_graph(data: DocumentExtraction):
dot = Digraph(comment="Entity Graph", node_attr={"shape": "plaintext"})