From 1aa5ffdcd061e0730142974809742c9bc81293da Mon Sep 17 00:00:00 2001 From: edef Date: Tue, 30 Aug 2016 18:30:58 -0400 Subject: [PATCH] fix doc comment of Stack::limit --- src/stack.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stack.rs b/src/stack.rs index 3e6a0ae..0e769d8 100644 --- a/src/stack.rs +++ b/src/stack.rs @@ -12,7 +12,7 @@ pub trait Stack { /// On all modern architectures, the stack grows downwards, /// so this is the highest address. fn base(&self) -> *mut u8; - /// Returns the bottom of the stack. + /// Returns the limit of the stack. /// On all modern architectures, the stack grows downwards, /// so this is the lowest address. fn limit(&self) -> *mut u8;