From e3eb0b0ff966eb5ba248784b9bd8c2354356d321 Mon Sep 17 00:00:00 2001 From: Nocturn9x Date: Mon, 14 Mar 2022 18:31:01 +0100 Subject: [PATCH] Minor documentation additions --- src/private/queues/linked.nim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/private/queues/linked.nim b/src/private/queues/linked.nim index 1be772b..1e4edf5 100644 --- a/src/private/queues/linked.nim +++ b/src/private/queues/linked.nim @@ -11,11 +11,15 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +## A deque implemented on top of a doubly linked list + import strformat type - DequeNode*[T] = ref object + DequeNode[T] = ref object + ## Linked list node next: DequeNode[T] prev: DequeNode[T] val: T