Bladeren bron

ob: minor fix to a documentation string

* lisp/ob.el (org-babel-number-p): fixed documentation string
Eric Schulte 15 jaren geleden
bovenliggende
commit
0901585105
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      lisp/ob.el

+ 1 - 1
lisp/ob.el

@@ -1671,7 +1671,7 @@ This is taken almost directly from `org-read-prop'."
     cell))
 
 (defun org-babel-number-p (string)
-  "Return t if STRING represents a number."
+  "If STRING represents a number return it's value."
   (if (and (string-match "^-?[0-9]*\\.?[0-9]*$" string)
            (= (length (substring string (match-beginning 0)
 				 (match-end 0)))