Skip to content

Commit

Permalink
Fix dead-end wikilink
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Jan 16, 2016
1 parent 603c06b commit 180dd4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion org/Lodox.org
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ return the list of non-empty results."
(defun lib-doc (filename)
"Parse `filename` and attempt to return a tuple, `` `#(true ,defsmap) ``
where `defsmap` is a map representing the definitions in `filename`.
If [[file-doc/1]] returns the empty list, return `false`."
If `file-doc/1` returns the empty list, return `false`."
(case (filename:extension filename)
(".lfe" (case (file-doc filename)
('() 'false)
Expand Down
2 changes: 1 addition & 1 deletion src/lodox-parse.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ return the list of non-empty results."
(defun lib-doc (filename)
"Parse `filename` and attempt to return a tuple, `` `#(true ,defsmap) ``
where `defsmap` is a map representing the definitions in `filename`.
If [[file-doc/1]] returns the empty list, return `false`."
If `file-doc/1` returns the empty list, return `false`."
(case (filename:extension filename)
(".lfe" (case (file-doc filename)
('() 'false)
Expand Down

0 comments on commit 180dd4a

Please sign in to comment.