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
- 2023-08-27 : add `split_string_by_unicode_codepoint` initially
## v0.0.1 (2023-08-27)
- 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)
(license MIT)
(documentation https://github.com/Yoxem/stringCodepointSplitter/tree/main/docs)
(documentation https://github.com/Yoxem/stringCodepointSplitter/)
(package
(name stringCodepointSplitter)
(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.
It requires module Uutf.")
(depends ocaml findlib dune uutf)
(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"
description: """
Split a string to a list of strings of a character by the unicode codepoint.
It requires module Uutf."""
maintainer: ["Tan Kian-ting <yoxem@kianting.info>"]
authors: ["Tan Kian-ting <yoxem@kianting.info>"]
license: "MIT"
tags: ["string" "utf8"]
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"
depends: [
"ocaml"