branch: externals/yaml commit a90fc1580c9b522f030685c5c4bb7ddcf449e943 Author: Zachary Romero <zacrom...@posteo.net> Commit: Zachary Romero <zacrom...@posteo.net>
Update commentary file --- yaml.el | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/yaml.el b/yaml.el index 4e4a8da547..be245773c6 100644 --- a/yaml.el +++ b/yaml.el @@ -29,13 +29,8 @@ ;;; Commentary: ;; yaml.el contains the code for parsing YAML natively in Elisp with -;; no dependencies. Rules for the grammar were generated from the -;; YAML Projects JSON version of the grammar spec -;; (https://github.com/yaml/yaml-grammar) via the 'grammargen.bb' -;; script. -;; -;; The main function which parses YAML is `yaml-parse-string'. The following -;; are some examples of its usage: +;; no dependencies. The main function to parse YAML provided is +;; `yaml-parse-string'. The following are some examples of its usage: ;; ;; (yaml-parse-string "key1: value1\nkey2: value2") ;; (yaml-parse-string "key1: value1\nkey2: value2" :object-type 'alist)