From 2aa048805f0c4334588cdbc5840c4040a6d27331 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Fri, 24 Sep 2010 09:58:06 -0700 Subject: [PATCH] tweaked wording in readme --- Readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Readme.md b/Readme.md index 3d72e59..743f138 100644 --- a/Readme.md +++ b/Readme.md @@ -27,7 +27,7 @@ edit The first time you run `edit()` in a repl a temporary file is created, specific to that session, and opened in your editor. Type away and then save and close the file when you're done. The file -will be loaded and executed at that time. +is loaded and executed immediately. run @@ -39,20 +39,20 @@ To run whatever command you've been working on without editing it again type `ru setEditor --------- -`setEditor('mate -w')` will change your editor to TextMate for this session. Note that this -command changes the environment variable EDITOR for the repl process. +`setEditor('mate -w')` changes your editor to TextMate for this session. Note that this +command sets the environment variable EDITOR for the repl process. stash ----- -`stash('/path/to/a/file')` will save your command to the named file. +`stash('/path/to/a/file')` saves your command to the named file. unstash ------- -`unstash('/path/to/a/file')` will restore the contents of that file for you to run and/or edit. +`unstash('/path/to/a/file')` restores the contents of that file for you to run and/or edit. Future