fix something

This commit is contained in:
Tan, Kian-ting 2023-08-27 12:43:35 +08:00
parent ede161c54f
commit c17676d0ef
4 changed files with 5 additions and 11 deletions

View file

@ -1,2 +1,2 @@
## 0.0.1 ## v0.0.1 (2023-08-27)
- 2023-08-27 : add `split_string_by_unicode_codepoint` initially - add `split_string_by_unicode_codepoint` initially

View file

@ -1,5 +0,0 @@
doc : docs lib/stringCodepointSplitter.ml
ocamlfind ocamldoc -package uutf -package findlib -html -charset=utf-8 lib/stringCodepointSplitter.ml -d docs
docs :
mkdir docs

View file

@ -13,14 +13,14 @@
(bug_reports https://github.com/Yoxem/stringCodepointSplitter/issues) (bug_reports https://github.com/Yoxem/stringCodepointSplitter/issues)
(license MIT) (license MIT)
(documentation https://github.com/Yoxem/stringCodepointSplitter/tree/main/docs) (documentation https://github.com/Yoxem/stringCodepointSplitter/)
(package (package
(name stringCodepointSplitter) (name stringCodepointSplitter)
(synopsis "Split a string to a list of strings of a character by the unicode codepoint") (synopsis "Split a string to a list of strings of a character by the unicode codepoint")
(description "Split a string to a list of strings of a character by the unicode codepoint. (description "Split a string to a list of strings of a character by the unicode codepoint.
It requires module Uutf.") It requires module Uutf.")
(depends ocaml findlib dune uutf) (depends ocaml findlib dune uutf)
(tags (string utf8))) (tags (string utf8)))

View file

@ -5,14 +5,13 @@ synopsis:
"Split a string to a list of strings of a character by the unicode codepoint" "Split a string to a list of strings of a character by the unicode codepoint"
description: """ description: """
Split a string to a list of strings of a character by the unicode codepoint. Split a string to a list of strings of a character by the unicode codepoint.
It requires module Uutf.""" It requires module Uutf."""
maintainer: ["Tan Kian-ting <yoxem@kianting.info>"] maintainer: ["Tan Kian-ting <yoxem@kianting.info>"]
authors: ["Tan Kian-ting <yoxem@kianting.info>"] authors: ["Tan Kian-ting <yoxem@kianting.info>"]
license: "MIT" license: "MIT"
tags: ["string" "utf8"] tags: ["string" "utf8"]
homepage: "https://github.com/yoxem/stringCodepointSplitter" homepage: "https://github.com/yoxem/stringCodepointSplitter"
doc: "https://github.com/Yoxem/stringCodepointSplitter/tree/main/docs" doc: "https://github.com/Yoxem/stringCodepointSplitter/"
bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues" bug-reports: "https://github.com/Yoxem/stringCodepointSplitter/issues"
depends: [ depends: [
"ocaml" "ocaml"