From 061aaf6f28e90cb26f55bcd3c93abe939d195bea Mon Sep 17 00:00:00 2001 From: Ashish Jain Date: Mon, 15 Jul 2024 12:38:30 +0200 Subject: [PATCH] fix: typo issue --- packages/mermaid/src/config.type.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mermaid/src/config.type.ts b/packages/mermaid/src/config.type.ts index b574be81d3..a010fb088d 100644 --- a/packages/mermaid/src/config.type.ts +++ b/packages/mermaid/src/config.type.ts @@ -89,12 +89,12 @@ export interface MermaidConfig { */ maxEdges?: number; /** - * Elk specific option that allows egdes to share path where it convenient. It can make for pretty diagrams but can also make it harder to read the diagram. + * Elk specific option that allows edges to share path where it convenient. It can make for pretty diagrams but can also make it harder to read the diagram. * */ 'elk.mergeEdges'?: boolean; /** - * Elk specific option affedcting how nodes are placed. + * Elk specific option affecting how nodes are placed. * */ 'elk.nodePlacement.strategy'?: 'SIMPLE' | 'NETWORK_SIMPLEX' | 'LINEAR_SEGMENTS' | 'BRANDES_KOEPF';