Skip to content

Commit

Permalink
[RFC:] Docstring for Unicode module (#52761)
Browse files Browse the repository at this point in the history
Part of #52725.
Thank you

---------

Signed-off-by: 11happy <soni5happy@gmail.com>
  • Loading branch information
11happy committed Jan 9, 2024
1 parent c0c676b commit b4d857b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions stdlib/Unicode/docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Unicode

The `Unicode` module provides essential functionality for managing Unicode characters and strings.
It includes validation, category determination, normalization, case transformation, and grapheme segmentation, enabling effective Unicode data handling.

```@docs
Unicode
Unicode.julia_chartransform
Unicode.isassigned
Unicode.isequal_normalized
Expand Down
6 changes: 5 additions & 1 deletion stdlib/Unicode/src/Unicode.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

"""
The `Unicode` module provides essential functionality for managing Unicode characters and strings.
It includes validation, category determination, normalization, case transformation, and grapheme segmentation,
enabling effective Unicode data handling.
"""
module Unicode

export graphemes, isequal_normalized
Expand Down

0 comments on commit b4d857b

Please sign in to comment.