diff doc/interpreter/eval.txi @ 8347:fa78cb8d8a5c

corrections for typos Here is a patch with some corrections for typos and missing/extra words in the manual. changeset: 8347:34fd1d1c2294 user: Brian Gough <bjg@gnu.org> date: Wed Nov 26 11:00:15 2008 -0500 summary: [docs] can not => cannot
author Brian Gough<bjg@network-theory.co.uk>
date Thu, 27 Nov 2008 10:28:24 +0100
parents fd42779a8428
children 00df69d7e698
line wrap: on
line diff
--- a/doc/interpreter/eval.txi	Tue Nov 25 14:04:55 2008 +0100
+++ b/doc/interpreter/eval.txi	Thu Nov 27 10:28:24 2008 +0100
@@ -25,7 +25,7 @@
 
 Sometimes, you may find it necessary to evaluate an expression that has
 been computed and stored in a string, which is exactly what the
-@code{eval} lets you do.
+@code{eval} function lets you do.
 
 @DOCSTRING(eval)
 
@@ -38,7 +38,7 @@
 @section Calling a Function by its Name
 
 The @code{feval} function allows you to call a function from a string
-containing its name. This is useful when writing a function that need to
+containing its name. This is useful when writing a function that needs to
 call user-supplied functions. The @code{feval} function takes the name
 of the function to call as its first argument, and the remaining 
 arguments are given to the function.