diff --git a/docs/Path.html b/docs/Path.html index b771678..02a06b2 100644 --- a/docs/Path.html +++ b/docs/Path.html @@ -97,7 +97,7 @@ has some functions to work with the PATH environment variable.

checks whether a path is absolute.

-

As such, it is the inverse to relative.

+

As such, it is the inverse to relative?.

@@ -342,7 +342,7 @@ is none.

checks whether a path is relative.

-

As such, it is the inverse to absolute.

+

As such, it is the inverse to absolute?.

diff --git a/gendocs.carp b/gendocs.carp index f9730c4..2279031 100644 --- a/gendocs.carp +++ b/gendocs.carp @@ -1,13 +1,10 @@ (load "path.carp") -(defndynamic gendocs [] - (do - (Project.config "title" "path") - (Project.config "docs-directory" "./docs/") - (Project.config "docs-logo" "") - (Project.config "docs-styling" "style.css") - (Project.config "docs-generate-index" false) - (save-docs Path))) +(Project.config "title" "path") +(Project.config "docs-directory" "./docs/") +(Project.config "docs-logo" "") +(Project.config "docs-styling" "style.css") +(Project.config "docs-generate-index" false) +(save-docs Path) -(gendocs) (quit) diff --git a/path.carp b/path.carp index 115982c..e6eb272 100644 --- a/path.carp +++ b/path.carp @@ -16,7 +16,7 @@ It assumes either Windows or POSIX-style separators.") (defmodule Path (doc absolute? "checks whether a path is absolute. -As such, it is the inverse to [relative](#relative).") +As such, it is the inverse to [relative?](#relative?).") (doc separator "is the default separator we use on this OS.") (doc separators "is the possible separators we could use on this OS.") (doc search-path-separator "is the separator for the `PATH` environment @@ -42,7 +42,7 @@ variable we use on this OS.") (doc relative? "checks whether a path is relative. -As such, it is the inverse to [absolute](#absolute).") +As such, it is the inverse to [absolute?](#absolute?).") (defn relative? [p] (not (absolute? p))) (doc separator? "checks whether the character `c` is a path separator on this