From d80cf91ef2b9e17218299906def9f02750abd050 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Thu, 23 Jun 2016 00:04:10 -0600 Subject: [PATCH] Rename `stepper` module to `step`. --- src/interpreter/mod.rs | 2 +- src/interpreter/{stepper.rs => step.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/interpreter/{stepper.rs => step.rs} (100%) diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index 410b7a3d79e..6a21714f0d6 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -23,7 +23,7 @@ use primval::{self, PrimVal}; use std::collections::HashMap; -mod stepper; +mod step; pub struct EvalContext<'a, 'tcx: 'a> { /// The results of the type checker, from rustc. diff --git a/src/interpreter/stepper.rs b/src/interpreter/step.rs similarity index 100% rename from src/interpreter/stepper.rs rename to src/interpreter/step.rs