From b123818b82a1fb0a374c36349af86141aaa134dd Mon Sep 17 00:00:00 2001 From: Federico Ficarelli Date: Fri, 16 Oct 2015 11:38:34 +0200 Subject: [PATCH] Small fixes on docs. --- automaton/graph.py | 1 + docs/source/index.rst | 2 +- docs/source/reference/automaton.rst | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/automaton/graph.py b/automaton/graph.py index 7d9f2be..b791718 100644 --- a/automaton/graph.py +++ b/automaton/graph.py @@ -46,6 +46,7 @@ def connected_components(edges): set The set containing the nodes grouped by connected components. + .. _Union Find: https://en.wikipedia.org/wiki/Disjoint-set_data_structure """ inbound = defaultdict(set) diff --git a/docs/source/index.rst b/docs/source/index.rst index f98e938..5b09fa2 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,7 +3,7 @@ Automaton - Minimal Finite-state Machines ========================================= Automaton is a minimal and easy to use finite-state machine definition package for Python. -The focus here is on *minimalism* and *not* on feature-packness. +The focus here is on *minimalism* and *not* on feature-richness. Contents: diff --git a/docs/source/reference/automaton.rst b/docs/source/reference/automaton.rst index bf6b1ac..608ccf2 100644 --- a/docs/source/reference/automaton.rst +++ b/docs/source/reference/automaton.rst @@ -16,6 +16,14 @@ automaton.automaton module :undoc-members: :show-inheritance: +automaton.graph module +---------------------- + +.. automodule:: automaton.graph + :members: + :undoc-members: + :show-inheritance: + automaton.exceptions module ---------------------------