diff --git a/data-explorer/kusto/query/make-graph-operator.md b/data-explorer/kusto/query/make-graph-operator.md
index 8d90e3ae66..06a815925f 100644
--- a/data-explorer/kusto/query/make-graph-operator.md
+++ b/data-explorer/kusto/query/make-graph-operator.md
@@ -49,7 +49,7 @@ The following example builds a graph from edges and nodes tables. The nodes repr
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
-> Run the query
+> Run the query
::: moniker-end
```kusto
@@ -61,7 +61,7 @@ let nodes = datatable(name:string, type:string, age:int)
"Mallory", "Person", 29,
"Trent", "System", 99
];
-let edges = datatable(source:string, destination:string, edge_type:string)
+let edges = datatable(Source:string, Destination:string, edge_type:string)
[
"Alice", "Bob", "communicatesWith",
"Alice", "Trent", "trusts",
@@ -71,7 +71,7 @@ let edges = datatable(source:string, destination:string, edge_type:string)
"Mallory", "Bob", "attacks"
];
edges
-| make-graph source --> destination with nodes on name
+| make-graph Source --> Destination with nodes on name
| graph-match (mallory)-[attacks]->(compromised)-[hasPermission]->(trent)
where mallory.name == "Mallory" and trent.name == "Trent" and attacks.edge_type == "attacks" and hasPermission.edge_type == "hasPermission"
project Attacker = mallory.name, Compromised = compromised.name, System = trent.name