diff --git a/examples/navigate_forward_2.fql b/examples/navigate_forward_2.fql index b6fe901a..dedfea51 100644 --- a/examples/navigate_forward_2.fql +++ b/examples/navigate_forward_2.fql @@ -1,9 +1,9 @@ LET doc = DOCUMENT("https://github.com/", true) NAVIGATE(doc, "https://github.com/features") -NAVIGATE(doc, "https://github.com/business") +NAVIGATE(doc, "https://github.com/enterprise") NAVIGATE(doc, "https://github.com/marketplace") NAVIGATE_BACK(doc, 3) NAVIGATE_FORWARD(doc, 2) -RETURN doc.url == "https://github.com/business" +RETURN doc.url == "https://github.com/enterprise"