Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14593#discussion_r74401530
  
    --- Diff: docs/graphx-programming-guide.md ---
    @@ -235,8 +235,9 @@ triplet view of a graph to render a collection of 
strings describing relationshi
     val graph: Graph[(String, String), String] // Constructed from above
     // Use the triplets view to create an RDD of facts.
     val facts: RDD[String] =
    -  graph.triplets.map(triplet =>
    -    triplet.srcAttr._1 + " is the " + triplet.attr + " of " + 
triplet.dstAttr._1)
    +  graph.triplets.map { triplet =>
    --- End diff --
    
    Sure, thank you.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to