# HG changeset patch
# User Minh Van Nguyen <nguyenminh2@gmail.com>
# Date 1271115038 25200
# Node ID af55b7e21d271a62e76a3a1b47fd23f7d3ebed25
# Parent 7a2b53b62cd9254be7f5695bb8d0c6bd61a99e99
#8513: reviewer patch: adding modules for undirected and generic graphs to reference manual
diff --git a/doc/en/reference/graphs.rst b/doc/en/reference/graphs.rst
a
|
b
|
|
4 | 4 | .. toctree:: |
5 | 5 | :maxdepth: 2 |
6 | 6 | |
7 | | sage/graphs/cliquer |
| 7 | sage/graphs/graph |
8 | 8 | sage/graphs/digraph |
9 | 9 | sage/graphs/generic_graph |
10 | | sage/graphs/graph |
| 10 | |
| 11 | sage/graphs/cliquer |
11 | 12 | sage/graphs/graph_coloring |
| 13 | sage/graphs/graph_database |
12 | 14 | sage/graphs/graph_generators |
13 | | sage/graphs/graph_database |
| 15 | sage/graphs/graph_latex |
14 | 16 | sage/graphs/graph_list |
| 17 | |
15 | 18 | sage/graphs/base/c_graph |
16 | 19 | sage/graphs/base/sparse_graph |
17 | 20 | sage/graphs/base/dense_graph |
18 | | sage/graphs/graph_latex |
diff --git a/sage/misc/sagedoc.py b/sage/misc/sagedoc.py
a
|
b
|
|
889 | 889 | |
890 | 890 | sage: len(search_doc('tree', interact=False).splitlines()) > 2000 |
891 | 891 | True |
892 | | sage: len(search_doc('tree', whole_word=True, interact=False).splitlines()) < 100 |
| 892 | sage: len(search_doc('tree', whole_word=True, interact=False).splitlines()) < 200 |
893 | 893 | True |
894 | 894 | """ |
895 | 895 | return _search_src_or_doc('doc', string, extra1=extra1, extra2=extra2, |