From 4f968c276a03aa092b911acf942e85aa48768b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=9A=D1=80=D0=B0=D0=B2=D1=86=D0=BE=D0=B2?= Date: Thu, 25 Jul 2019 01:49:51 +0300 Subject: [PATCH] Fix typo at error -> panic --- src/error/panic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error/panic.md b/src/error/panic.md index 1888d8a78a..a690642539 100644 --- a/src/error/panic.md +++ b/src/error/panic.md @@ -1,7 +1,7 @@ # `panic` The simplest error handling mechanism we will see is `panic`. It prints an -error message, starts unwinding the task, and usually exits the program. +error message, starts unwinding the stack, and usually exits the program. Here, we explicitly call `panic` on our error condition: ```rust,editable,ignore,mdbook-runnable