diff options
author | Mike Gerwitz <gerwitm@lovullo.com> | 2016-07-14 09:13:24 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitm@lovullo.com> | 2016-07-14 09:15:38 -0400 |
commit | 1457d722218b07d021a108571659e8148f7141e8 (patch) | |
tree | 9e3a891270dce5e42275550c4fbed139cadf1dae /src/graph.xsl | |
parent | da9a16ae859e88c6463c9c0898ca48a32425a85a (diff) | |
download | tame-1457d722218b07d021a108571659e8148f7141e8.tar.gz tame-1457d722218b07d021a108571659e8148f7141e8.tar.bz2 tame-1457d722218b07d021a108571659e8148f7141e8.zip |
Update literate-xsl
This makes changes necessary to new ref format (which includes arity).
* src/graph.xsl: @ref function arity added
* src/preproc/expand/expand-sequence.xsl: @ref function arity added
* tools/literate-xsl: Submodule updated
Diffstat (limited to 'src/graph.xsl')
-rw-r--r-- | src/graph.xsl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/graph.xsl b/src/graph.xsl index 9f3036e..40ffa22 100644 --- a/src/graph.xsl +++ b/src/graph.xsl @@ -59,7 +59,7 @@ The resulting graph will be normalized with duplicate vertices and edges removed, making it suitable for ad hoc graph generation.@c - @footnote{This is done by calling @ref{graph:union}.} + @footnote{This is done by calling @ref{graph:union#1}.} --> <function name="graph:make-from-vertices" as="element( preproc:sym-deps )"> @@ -208,7 +208,7 @@ Graph operations are usually performed on single packages, but it is occionally necessary to traverse packages to recurisvely resolve dependencies. - @ref{graph:dep-lookup} makes this easy: + @ref{graph:dep-lookup#3} makes this easy: TODO: Generic graph functions. --> @@ -247,10 +247,10 @@ </function> <!-- - @ref{graph:dep-lookup} can be used together with the convenience - function @ref{graph:make-from-deps} to produce a graph that + @ref{graph:dep-lookup#3} can be used together with the convenience + function @ref{graph:make-from-deps#2} to produce a graph that contains all dependencies for a given symbol list. - Used together with @ref{graph:reverse}, + Used together with @ref{graph:reverse#1}, a reverse dependency graph can be easily created that provides a useful ``used by'' relationship. --> @@ -295,7 +295,7 @@ <!-- The provided graph lookups are constructors that use symbols to locate a graph. Using partial application, they are convenient for - use in @ref{graph:dep-lookup} to resolve external graphs. + use in @ref{graph:dep-lookup#3} to resolve external graphs. --> <!-- |