fix something
This commit is contained in:
parent
ede161c54f
commit
c17676d0ef
4 changed files with 5 additions and 11 deletions
4
CHANGES
4
CHANGES
|
@ -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
|
5
Makefile
5
Makefile
|
@ -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
|
|
@ -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)))
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue