Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Nov 16, 2023
1 parent 309527c commit 2e74d44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynitrokey/cli/nk3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def version(ctx: Context) -> None:
@nk3.command()
@click.pass_obj
def factory_reset(ctx: Context) -> None:
"""Factory reset all functionnality of the device"""
"""Factory reset all functionality of the device"""
with ctx.connect_device() as device:
device.factory_reset()

Expand All @@ -515,7 +515,7 @@ def factory_reset(ctx: Context) -> None:
@click.pass_obj
@click.argument("application", type=click.STRING, required=True)
def factory_reset_app(ctx: Context, application: str) -> None:
"""Factory reset all functionnality of the device"""
"""Factory reset all functionality of an application"""
with ctx.connect_device() as device:
device.factory_reset_app(application)

Expand Down

0 comments on commit 2e74d44

Please sign in to comment.