From b76b7747d0c309e688fb67f60468ec8bcff0ade6 Mon Sep 17 00:00:00 2001 From: Chris Fallin Date: Thu, 12 Aug 2021 14:00:20 -0700 Subject: [PATCH] Fix comment in postorder.rs. --- src/postorder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postorder.rs b/src/postorder.rs index 9e6eea8..96e9787 100644 --- a/src/postorder.rs +++ b/src/postorder.rs @@ -3,7 +3,7 @@ * exception. See `LICENSE` for details. */ -//! Fast postorder computation with no allocations (aside from result). +//! Fast postorder computation. use crate::Block; use smallvec::{smallvec, SmallVec};