Skip to content

Commit

Permalink
fix: 一部、ドキュメントが変なのを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
tasuren committed Feb 12, 2023
1 parent 0d736c1 commit c0bf1dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "i21y"
version = "0.1.0b2"
version = "0.1.0b3"
description = "The library for i18n support."
authors = ["Takagi Tasuku <tasuren@outlook.jp>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/i21y/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"tasuren - i21y"

__author__ = "Takagi Tasuku"
__version__ = "0.1.0b2"
__version__ = "0.1.0b3"
__all__ = ("Translator", "I21YError", "TranslationNotFound", "locale_str")

from .translator import Translator
Expand Down
2 changes: 1 addition & 1 deletion src/i21y/loaders/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class Loader(FileLoader):
"""Loader implemented to load json files.
By default, json is read using the standard module json.
But if you have ``orjson`` or ``i21y[fast_json]`` installed, json reading is done with the library called orjson.
But if you have ``orjson`` or ``i21y[fast-json]`` installed, json reading is done with the library called orjson.
The arguments of constructor are same as :class:`.file_.Loader`."""

EXTENSIONS = (".json",)
Expand Down

0 comments on commit c0bf1dc

Please sign in to comment.