Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion async/unstable_channel.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.

import { Deque } from "@std/data-structures/unstable-deque";
import { Deque } from "@std/data-structures/deque";

/** Internal node for the FIFO sender waiting queue. */
interface SenderNode<T> {
Expand Down
4 changes: 2 additions & 2 deletions data_structures/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"./binary-search-tree": "./binary_search_tree.ts",
"./unstable-binary-search-tree": "./unstable_binary_search_tree.ts",
"./comparators": "./comparators.ts",
"./deque": "./deque.ts",
"./red-black-tree": "./red_black_tree.ts",
"./unstable-2d-array": "./unstable_2d_array.ts",
"./unstable-rolling-counter": "./unstable_rolling_counter.ts",
"./unstable-deque": "./unstable_deque.ts"
"./unstable-rolling-counter": "./unstable_rolling_counter.ts"
}
}
Loading
Loading