Skip to content

Commit 1bed60d

Browse files
committedMar 24, 2025
Fixed missing space in DAG FAQ
1 parent c8d493a commit 1bed60d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/data/ProjectsData.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ export const WukongProject: Project = {
126126
question: "What is a Directed Acyclic Graph (DAG)?",
127127
answer: <Stack direction={"column"} spacing={1}>
128128
<Typography component={"span"}>
129-
A Directed Acyclic Graph (DAG) is a graph in which the nodes (i.e., vertices) are connected by
130-
<i>directed</i> edges (i.e., arrows), without any cycles or loops.
129+
A Directed Acyclic Graph (DAG) is a graph in which the nodes (i.e., vertices) are connected
130+
by <i>directed</i> edges (i.e., arrows), without any cycles or loops.
131131

132132
This means that you <i>cannot</i> start at a node and begin following edges (arrows) to get back
133133
to the same starting node.

0 commit comments

Comments
 (0)
Please sign in to comment.