Skip to content

Commit 04d52f4

Browse files
committed
Ignores generated docs
1 parent 01021b7 commit 04d52f4

3 files changed

Lines changed: 2462 additions & 3 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ erl_crash.dump
1616
# Also ignore archive artifacts (built via "mix archive.build").
1717
*.ez
1818

19+
# Node dependencies for building docs
20+
/node_modules
21+
22+
# Generated docs site
23+
/docs/.vitepress/dist
24+
1925
# Ignore package tarball (built via "mix hex.build").
2026
statifier-*.tar
2127

lib/statifier/configuration.ex

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Statifier.Configuration do
33
Represents the current active states in an SCXML state chart.
44
55
Only stores leaf (atomic) states - parent states are considered active
6-
when any of their children are active. Use active_ancestors/2 to compute
6+
when any of their children are active. Use all_active_states/2 to compute
77
the full set of active states including ancestors.
88
"""
99

@@ -90,6 +90,4 @@ defmodule Statifier.Configuration do
9090
parent_state -> collect_ancestors(parent_state, document, [parent_id | ancestors])
9191
end
9292
end
93-
94-
# Linear search functions removed - now using O(1) Document.find_state/2 lookup
9593
end

0 commit comments

Comments
 (0)