diff --git a/org-roam-capture.el b/org-roam-capture.el index a491492..453e207 100644 --- a/org-roam-capture.el +++ b/org-roam-capture.el @@ -29,6 +29,7 @@ ;; ;; This library provides capture functionality for org-roam ;;; Code: +;;; ;;;; Library Requires (require 'org-capture) (eval-when-compile diff --git a/org-roam-completion.el b/org-roam-completion.el index f95c9e1..5ac15f2 100644 --- a/org-roam-completion.el +++ b/org-roam-completion.el @@ -27,7 +27,16 @@ ;;; Commentary: ;; -;; This library provides completion-at-point for org-roam. +;; This library provides completion-at-point functions for Org-roam. +;; +;; The two main functions provided to capf are: +;; +;; `org-roam-complete-link-at-point' provides completions to nodes +;; within link brackets +;; +;; `org-roam-complete-everywhere' provides completions for nodes everywhere, +;; matching the symbol at point +;; ;;; Code: (require 'cl-lib) diff --git a/org-roam-db.el b/org-roam-db.el index 255ffb3..2fdc278 100644 --- a/org-roam-db.el +++ b/org-roam-db.el @@ -27,7 +27,7 @@ ;;; Commentary: ;; -;; This library is provides the underlying database api to org-roam +;; This library provides the underlying database api to org-roam. ;; ;;; Code: ;;;; Library Requires