Jelajahi Sumber

doc: minor changes

Michele Caini 3 tahun lalu
induk
melakukan
9cf9661484
1 mengubah file dengan 5 tambahan dan 5 penghapusan
  1. 5 5
      docs/md/graph.md

+ 5 - 5
docs/md/graph.md

@@ -8,7 +8,7 @@
 * [Introduction](#introduction)
 * [Introduction](#introduction)
 * [Data structures](#data-structures)
 * [Data structures](#data-structures)
   * [Adjacency matrix](#adjacency-matrix)
   * [Adjacency matrix](#adjacency-matrix)
-  * [Dot](#dot)
+  * [Graphviz dot language](#graphviz-dot-language)
 * [Flow builder](#flow-builder)
 * [Flow builder](#flow-builder)
   * [Tasks and resources](#tasks-and-resources)
   * [Tasks and resources](#tasks-and-resources)
   * [Fake resources and order of execution](#fake-resources-and-order-of-execution)
   * [Fake resources and order of execution](#fake-resources-and-order-of-execution)
@@ -117,10 +117,10 @@ Finally, the adjacency matrix is an allocator-aware container and offers most of
 the functionality one would expect from this type of containers, such as `clear`
 the functionality one would expect from this type of containers, such as `clear`
 or 'get_allocator` and so on.
 or 'get_allocator` and so on.
 
 
-## Dot
+## Graphviz dot language
 
 
 As it's one of the most popular formats, the library offers minimal support for
 As it's one of the most popular formats, the library offers minimal support for
-converting a graph to a dot plot.<br/>
+converting a graph to a Graphviz dot snippet.<br/>
 The simplest way is to pass both an output stream and a graph to the `dot`
 The simplest way is to pass both an output stream and a graph to the `dot`
 function:
 function:
 
 
@@ -130,8 +130,8 @@ entt::dot(output, adjacency_matrix);
 ```
 ```
 
 
 However, there is also the option of providing a callback to which the vertices
 However, there is also the option of providing a callback to which the vertices
-are passed and which can be used to add (dot) properties to the output from time
-to time:
+are passed and which can be used to add (`dot`) properties to the output from
+time to time:
 
 
 ```cpp
 ```cpp
 std::ostringstream output{};
 std::ostringstream output{};