Skip to content

Commit

Permalink
Fix opam lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Apr 30, 2024
1 parent 30b1d80 commit c096301
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
14 changes: 8 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"\| open Tyxml;
"\| let to_reason = <a href=\"reasonml.github.io/\"> \"Reason!\" </a>
"\| ```
"\|
"\| The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
"\|
"\| The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
"\| It works with textual trees, virtual DOM trees, or any TyXML module.
)
(depends
Expand All @@ -35,13 +35,13 @@
(package
(name tyxml-ppx)
(synopsis "PPX to write TyXML documents with the HTML syntax")
(description
(description
"\| ```ocaml
"\| open Tyxml
"\| let%html to_ocaml = \"<a href='ocaml.org'>OCaml!</a>\"
"\| ```
"\|
"\| The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
"\|
"\| The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
"\| It works with textual trees, virtual DOM trees, or any TyXML module.
)
(depends
Expand All @@ -53,7 +53,9 @@
(markup
(>= 0.7.2))
(ppxlib
(>= 0.18))))
(>= 0.18))
(re
(>= 1.5.0))))
(package
(name tyxml-syntax)
Expand Down
4 changes: 2 additions & 2 deletions tyxml-jsx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ description: """
open Tyxml;
let to_reason = <a href="reasonml.github.io/"> "Reason!" </a>
```
The TyXML JSX allow to write TyXML documents with reason's JSX syntax.

The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
It works with textual trees, virtual DOM trees, or any TyXML module.
"""
maintainer: ["[email protected]"]
Expand Down
5 changes: 3 additions & 2 deletions tyxml-ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ description: """
open Tyxml
let%html to_ocaml = "<a href='ocaml.org'>OCaml!</a>"
```
The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.

The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
It works with textual trees, virtual DOM trees, or any TyXML module.
"""
maintainer: ["[email protected]"]
Expand All @@ -24,6 +24,7 @@ depends: [
"alcotest" {with-test}
"markup" {>= "0.7.2"}
"ppxlib" {>= "0.18"}
"re" {>= "1.5.0"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion tyxml-syntax.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.04"}
"ocaml" {>= "4.03"}
"alcotest" {with-test}
"ppxlib" {>= "0.18"}
"re" {>= "1.5.0"}
Expand Down
2 changes: 1 addition & 1 deletion tyxml.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doc: "https://ocsigen.org/tyxml/latest/manual/intro"
bug-reports: "https://github.com/ocsigen/tyxml/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.04"}
"ocaml" {>= "4.03"}
"alcotest" {with-test}
"re" {>= "1.5.0"}
"seq"
Expand Down

0 comments on commit c096301

Please sign in to comment.