Fix a small number of typos

This commit is contained in:
Stefan Kangas 2021-09-16 14:40:12 -07:00 committed by TEC
parent 51cdd6e30f
commit 215d80d02b
Signed by: tec
GPG key ID: 779591AFDB81F06C
5 changed files with 8 additions and 8 deletions

View file

@ -13880,7 +13880,7 @@ The LaTeX export back-end converts horizontal rules by the specified
The LaTeX export back-end accepts four attributes for verse blocks: The LaTeX export back-end accepts four attributes for verse blocks:
=:lines=, =:center=, =:versewidth= and =:latexcode=. The three first =:lines=, =:center=, =:versewidth= and =:latexcode=. The three first
require the external LaTeX package =verse.sty=, wich is an extension require the external LaTeX package =verse.sty=, which is an extension
of the standard LaTeX environment. The purpose of these attributes is of the standard LaTeX environment. The purpose of these attributes is
explained below. explained below.
@ -13904,7 +13904,7 @@ A complete example with Shakespeare's first sonnet:
From fairest creatures we desire increase, From fairest creatures we desire increase,
That thereby beautys rose might never die, That thereby beautys rose might never die,
But as the riper should by time decrease, But as the riper should by time decrease,
His tender heir mught bear his memeory: His tender heir mught bear his memory:
But thou, contracted to thine own bright eyes, But thou, contracted to thine own bright eyes,
Feedst thy lightst flame with self-substantial fuel, Feedst thy lightst flame with self-substantial fuel,
Making a famine where abundance lies, Making a famine where abundance lies,

View file

@ -253,7 +253,7 @@ that Org mode configures LaTeX to process any new float type.
The LaTeX export back-end accepts four attributes for verse blocks: The LaTeX export back-end accepts four attributes for verse blocks:
=:lines=, =:center=, =:versewidth= and =:latexcode=. The three first =:lines=, =:center=, =:versewidth= and =:latexcode=. The three first
require the external LaTeX package =verse.sty=, wich is an extension require the external LaTeX package =verse.sty=, which is an extension
of the standard LaTeX environment. The purpose of these attributes is of the standard LaTeX environment. The purpose of these attributes is
explained below. explained below.

View file

@ -472,7 +472,7 @@ If RESULT-TYPE equals `output' then return standard output as a
string. If RESULT-TYPE equals `value' then return the value string. If RESULT-TYPE equals `value' then return the value
returned by the source block, as elisp. returned by the source block, as elisp.
RESULT-PARAMS input params used to format the reponse. RESULT-PARAMS input params used to format the response.
RESULT-FILE filename of the tempfile to store the returned value in RESULT-FILE filename of the tempfile to store the returned value in
for `value' RESULT-TYPE. Not used for `output' RESULT-TYPE." for `value' RESULT-TYPE. Not used for `output' RESULT-TYPE."

View file

@ -230,7 +230,7 @@ If HARD-MIN and HARD-MAX can be used to fix the ends of the axis."
(defun org--plot/nice-frequency-pick (frequencies) (defun org--plot/nice-frequency-pick (frequencies)
"From a list of FREQUENCIES, try to sensibly pick a sample of the most frequent." "From a list of FREQUENCIES, try to sensibly pick a sample of the most frequent."
;; TODO this mosly works decently, but counld do with some tweaking to work more consistently. ;; TODO this mosly works decently, but could do with some tweaking to work more consistently.
(cl-case (length frequencies) (cl-case (length frequencies)
(1 (list (car (nth 0 frequencies)))) (1 (list (car (nth 0 frequencies))))
(2 (if (<= 3 (/ (cdr (nth 0 frequencies)) (2 (if (<= 3 (/ (cdr (nth 0 frequencies))
@ -354,7 +354,7 @@ the argument, and must return a string to be used."
(radar :plot-func (radar :plot-func
(lambda (table _data-file _num-cols params plot-str) (lambda (table _data-file _num-cols params plot-str)
(list (org--plot/radar table params))))) (list (org--plot/radar table params)))))
"List of plists describing the avalible plot types. "List of plists describing the available plot types.
The car is the type name, and the property :plot-func must be The car is the type name, and the property :plot-func must be
set. The value of :plot-func is a lambda which yields plot-lines set. The value of :plot-func is a lambda which yields plot-lines
\(a list of strings) as the cdr. \(a list of strings) as the cdr.
@ -405,7 +405,7 @@ set angles degree
set key bmargin center horizontal set key bmargin center horizontal
unset border unset border
# Load data and settup # Load data and setup
load \"%s\" load \"%s\"
# General settings # General settings

View file

@ -8857,7 +8857,7 @@ If the file does not exist, throw an error."
(save-window-excursion (save-window-excursion
(message "Running %s...done" cmd) (message "Running %s...done" cmd)
;; Handlers such as "gio open" and kde-open5 start viewer in background ;; Handlers such as "gio open" and kde-open5 start viewer in background
;; and exit immediately. Use pipe connnection type instead of pty to ;; and exit immediately. Use pipe connection type instead of pty to
;; avoid killing children processes with SIGHUP when temporary terminal ;; avoid killing children processes with SIGHUP when temporary terminal
;; session is finished. ;; session is finished.
;; ;;