diff --git a/scribblings/utils.scrbl b/scribblings/utils.scrbl index e18fdb0..c338c48 100644 --- a/scribblings/utils.scrbl +++ b/scribblings/utils.scrbl @@ -270,14 +270,13 @@ a state graph. @section{Additional graph utilities} @defproc[(dotit [graph Graph]) Void]{ -Typeset the graph via graphviz and display it. +Typesets the graph via @racket[graphviz] and @racket[display]s it. @examples[#:eval utils-evaluator (require typed/graph) (dotit (weighted-graph/directed '((1 a b) (2 b c)))) ]} - @defproc[(update-vertices/unweighted [graph Graph] [func (-> Any Any)]) Graph]{ Applies a transformation to every vertex in the unweighted graph and returns