Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up documentation #16

Merged
merged 13 commits into from
Mar 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revise docstring of org-babel-prolog--parse-goal
Reference the GOAL parameter correctly in the docstring.  Remove the
unnecessary and potentially confusing specification that GOAL is a
Prolog goal.
  • Loading branch information
lafrenierejm committed Mar 28, 2018
commit 44dd096a4a19babe667fe2d7b801c635b40251d1
2 changes: 1 addition & 1 deletion ob-prolog.el
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ list of the cdr of all the `:var' entries."
(list (concat ":- " (mapconcat #'identity vars ", ") ".\n")))))

(defun org-babel-prolog--parse-goal (goal)
"Evaluate inline emacs-lisp in prolog goal parameter.
"Evaluate the inline Emacs Lisp in GOAL.

Example:
append(=(+ 2 3), =(quote a), B)
Expand Down