diff --git a/pyproject.toml b/pyproject.toml index 182b6e0..6191eff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "saleyo" -version = "1.0.0" +version = "1.0.1" description = "Saleyo is a lightwight scalable Python AOP framework, easy to use and integrate." authors = [{ name = "H2Sxxa", email = "h2sxxa0w0@gmail.com" }] dependencies = [] diff --git a/src/saleyo/operation/modify.py b/src/saleyo/operation/modify.py index 0773d4a..7e108e7 100644 --- a/src/saleyo/operation/modify.py +++ b/src/saleyo/operation/modify.py @@ -32,7 +32,7 @@ def mixin(self, target: Type[Any], toolchain: ToolChain = ToolChain()) -> None: class Alias(MixinOperation[str]): - """will copy the `argument` to `alias`""" + """will copy the `argument` attribute to `alias`""" alias: str