Skip to content

Commit 2b4f4f1

Browse files
authored
doc: Fixed a small typo in the warning message
This PR fixes a small type in the warning message
1 parent 62fdbcc commit 2b4f4f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapegraphai/graphs/base_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, nodes: list, edges: list, entry_point: str, use_burr: bool =
5555
if nodes[0].node_name != entry_point.node_name:
5656
# raise a warning if the entry point is not the first node in the list
5757
warnings.warn(
58-
"Careful! The entry point node is different from the first node if the graph.")
58+
"Careful! The entry point node is different from the first node in the graph.")
5959

6060
# Burr configuration
6161
self.use_burr = use_burr

0 commit comments

Comments
 (0)