Skip to content

Commit

Permalink
Updated Userdocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramon authored and Ramon committed Feb 20, 2023
1 parent 085487d commit 785cd07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion USERDOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Use the combination of these packages to add type safety and readability:
>>> from beartype import beartype

>>> @beartype # The function signature is now type safe
... def fun(df: DataFrame[S["a: int, b: str"]]) -> DataFrame[S["a: int, b: str"]]:
... def fun(df: DataFrame[S["a: Int, b: Str"]]) -> DataFrame[S["a: Int, b: Str"]]:
... return df

```
Expand Down

0 comments on commit 785cd07

Please sign in to comment.