summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua')
-rw-r--r--Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua
index a750308e692..438925a2213 100644
--- a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua
+++ b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua
@@ -25,8 +25,8 @@
-- inform an algorithm about the input.
--
-- For each graph drawing scope, a new |Scope| object is
--- created. Graph drawing scopes are kept track of using a stack, but
--- only the top of this stack is available to the interface classes.
+-- created. Graph drawing scopes are kepts track of using a stack, but
+-- only the top of this stack is available to the interface classes.
--
-- @field syntactic_digraph The syntactic digraph is a digraph that
-- faithfully encodes the way the input graph is represented
@@ -77,16 +77,16 @@ local Digraph = require "pgf.gd.model.Digraph"
function Scope.new(initial)
return setmetatable(lib.copy(initial,
- {
- syntactic_digraph = Digraph.new{},
- events = {},
- node_names = {},
- coroutine = nil,
- collections = {},
- }), Scope)
+ {
+ syntactic_digraph = Digraph.new{},
+ events = {},
+ node_names = {},
+ coroutine = nil,
+ collections = {},
+ }), Scope)
end
--- Done
+-- Done
-return Scope
+return Scope \ No newline at end of file