# File lib/nanoc3/base/directed_graph.rb, line 94
    def delete_edges_to(to)
      @to_graph[to] ||= Set.new
      @to_graph[to].each do |from|
        @from_graph[from].delete(to)
      end
      @to_graph.delete(to)
    end