From 766eb799c9a4c6589a5cef2568224431822d9b66 Mon Sep 17 00:00:00 2001 From: Erin Date: Thu, 5 May 2022 00:39:13 +0200 Subject: [PATCH] Changed error variant name to go by conventions --- ablescript/src/error.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ablescript/src/error.rs b/ablescript/src/error.rs index 00b90339..855b213b 100644 --- a/ablescript/src/error.rs +++ b/ablescript/src/error.rs @@ -17,7 +17,7 @@ pub enum ErrorKind { BfInterpretError(InterpretError), MismatchedArgumentError, MissingLhs, - IOError(io::Error), + IoError(io::Error), } impl Error { @@ -56,13 +56,13 @@ impl Display for ErrorKind { // TODO: give concrete numbers here. ErrorKind::MismatchedArgumentError => write!(f, "wrong number of function arguments"), ErrorKind::MissingLhs => write!(f, "missing expression before binary operation"), - ErrorKind::IOError(err) => write!(f, "I/O error: {}", err), + ErrorKind::IoError(err) => write!(f, "I/O error: {}", err), } } } impl From for ErrorKind { fn from(e: io::Error) -> Self { - Self::IOError(e) + Self::IoError(e) } }