summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua')
-rw-r--r--Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua
index 81728a1a444..aaad047c702 100644
--- a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua
+++ b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua
@@ -30,12 +30,12 @@ local Digraph = require "pgf.gd.model.Digraph"
-- arrows. For instance, while "a <- b" will cause an arc from a to be
-- to be added to the syntactic digraph, calling this function will
-- return a digraph in which there is an arc from b to a rather than
--- the other way round. In detail, "a <- b" is translated as just
+-- the other way round. In detail, "a <- b" is tranlated as just
-- described, "a -> b" yields an arc from a to b as expected, "a <-> b"
-- and "a -- b" yield arcs in both directions and, finally, "a -!- b"
-- yields no arc at all.
--
--- @param syntactic_digraph A syntactic digraph, usually the "input"
+-- @param syntactic_digraph A syntacitic digraph, usually the "input"
-- graph as specified syntactically be the user.
--
-- @return A new "semantic" digraph object.
@@ -49,12 +49,12 @@ function Direct.digraphFromSyntacticDigraph(syntactic_digraph)
for _,m in ipairs(a.syntactic_edges) do
local direction = m.direction
if direction == "->" then
- digraph:connect(a.tail, a.head)
+ digraph:connect(a.tail, a.head)
elseif direction == "<-" then
- digraph:connect(a.head, a.tail)
+ digraph:connect(a.head, a.tail)
elseif direction == "--" or direction == "<->" then
- digraph:connect(a.tail, a.head)
- digraph:connect(a.head, a.tail)
+ digraph:connect(a.tail, a.head)
+ digraph:connect(a.head, a.tail)
end
-- Case -!-: No edges...
end
@@ -92,4 +92,4 @@ end
-- Done
-return Direct
+return Direct \ No newline at end of file