Minor cleanups
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 13 Dec 2004 21:42:16 +0000 (21:42 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 13 Dec 2004 21:42:16 +0000 (21:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18914 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llee/README.txt

index ac9b01bbfb17a1ebdd573b538de4f0523c5c44c1..9164c40b712be82a1f780187da1fb619d7de01d2 100644 (file)
@@ -1,12 +1,12 @@
               LLEE: (LL)VM (E)xecution (E)nvironment
 
 This tool presents a virtual execution environment for LLVM programs. By
-preloading a shared object which defines a custom execve() functions, we can
+preloading a shared object which defines a custom execve() function, we can
 execute bytecode files with the JIT directly, without the user ever thinking
 about it.
 
 Thus, a user can freely run any program, native or LLVM bytecode, transparently,
 and without even being aware of it.
 
-To use LLEE, run `./llee <native_program>', a good choice is a shell. Anything
+To use LLEE, run `llee <native_program>'; a good choice is a shell. Anything
 started within that program will be affected by the execve() replacement.