aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFrancesco Potortì <[email protected]>2002-12-29 19:13:55 +0000
committerFrancesco Potortì <[email protected]>2002-12-29 19:13:55 +0000
commit558ee9005ad8281af0de60e4beb8e963acf41dfc (patch)
treeadad6ed9d1bb3ddebf79b79dc070f1e6c77f5995 /src
parentfa634a5ec63316e4cef0e4e74646e934fbde98ed (diff)
(Fstring_to_number, Fminus): Better English in doc strings.
Diffstat (limited to 'src')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 5ccc3194b2..f3157b3336 100644
--- a/src/data.c
+++ b/src/data.c
@@ -2318,7 +2318,7 @@ digit_to_number (character, base)
}
DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0,
- doc: /* Return a number obtained by parsing STRING as a decimal number.
+ doc: /* Parse STRING as a decimal number and return the number.
This parses both integers and floating point numbers.
It ignores leading spaces and tabs.
@@ -2561,7 +2561,7 @@ usage: (+ &rest NUMBERS-OR-MARKERS) */)
}
DEFUN ("-", Fminus, Sminus, 0, MANY, 0,
- doc: /* Negate number or subtract numbers or markers, returns the result.
+ doc: /* Negate number or subtract numbers or markers and return the result.
With one arg, negates it. With more than one arg,
subtracts all but the first from the first.
usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */)