summaryrefslogtreecommitdiffstats
path: root/src/context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.rs')
-rw-r--r--src/context.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.rs b/src/context.rs
index 1cfbaa3af..3a663da42 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -37,7 +37,7 @@ impl<'a> Context<'a> {
/// Identify the current working directory and create an instance of Context
/// for it.
pub fn new(arguments: ArgMatches) -> Context {
- // Retreive the "path" flag. If unavailable, use the current directory instead.
+ // Retrieve the "path" flag. If unavailable, use the current directory instead.
let path = arguments
.value_of("path")
.map(From::from)