Merge pull request #4063 from gilbertw1/ligature-doc-fix

Fix ligature documentation typo
This commit is contained in:
Henrik Lissner 2020-10-09 18:14:22 -04:00 committed by GitHub
commit 739fb50b6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,45 +172,44 @@ if you don't like the symbols chosen you can change them by using...
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
;; you don't need to include all of them you can pick and mix ;; you don't need to include all of them you can pick and mix
(plist-put +ligatures-extra-symbols (plist-put! +ligatures-extra-symbols
'(;; org ;; org
:name "»" :name "»"
:src_block "»" :src_block "»"
:src_block_end "«" :src_block_end "«"
:quote "“" :quote "“"
:quote_end "”" :quote_end "”"
;; Functional ;; Functional
:lambda "λ" :lambda "λ"
:def "ƒ" :def "ƒ"
:composition "∘" :composition "∘"
:map "↦" :map "↦"
;; Types ;; Types
:null "∅" :null "∅"
:true "𝕋" :true "𝕋"
:false "𝔽" :false "𝔽"
:int "" :int ""
:float "" :float ""
:str "𝕊" :str "𝕊"
:bool "𝔹" :bool "𝔹"
:list "𝕃" :list "𝕃"
;; Flow ;; Flow
:not "¬" :not "¬"
:in "∈" :in "∈"
:not-in "∉" :not-in "∉"
:and "∧" :and "∧"
:or "" :or ""
:for "∀" :for "∀"
:some "∃" :some "∃"
:return "⟼" :return "⟼"
:yield "⟻" :yield "⟻"
;; Other ;; Other
:union "" :union ""
:intersect "∩" :intersect "∩"
:diff "" :diff ""
:tuple "⨂" :tuple "⨂"
:pipe "" ;; FIXME: find a non-private char :pipe "" ;; FIXME: find a non-private char
:dot "•")) :dot "•") ;; you could also add your own if you want
;; you could also add your own if you want
#+END_SRC #+END_SRC
* TODO Troubleshooting * TODO Troubleshooting