-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a documentation field to appease to dune-release
Signed-off-by: Rudi Grinberg <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
(maintainers "[email protected]" "[email protected]") | ||
(authors "Martin Jambon") | ||
(implicit_transitive_deps false) | ||
(documentation "https://mjambon.github.io/easy-format/") | ||
|
||
(package | ||
(synopsis "High-level and functional interface to the Format module of the OCaml standard library") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ maintainer: ["[email protected]" "[email protected]"] | |
authors: ["Martin Jambon"] | ||
bug-reports: "https://github.com/mjambon/easy-format/issues" | ||
homepage: "https://github.com/mjambon/easy-format" | ||
doc: "https://mjambon.github.io/easy-format/" | ||
license: "BSD-3-Clause" | ||
dev-repo: "git+https://github.com/mjambon/easy-format.git" | ||
synopsis: | ||
|
@@ -28,6 +29,7 @@ nodes: | |
* atoms | ||
* lists | ||
* labelled nodes | ||
|
||
Atoms represent any text that is guaranteed to be printed as-is. Lists can model | ||
any sequence of items such as arrays of data or lists of definitions that are | ||
labelled with something like "int main", "let x =" or "x:".""" | ||
|