From 1e53fd1f8cf2ba6c3761c10318c5f754050d5fba Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 23 Dec 2020 11:54:51 +1100 Subject: [PATCH] docs: fix simple typo, funciton -> function There is a small typo in jupyterhub/orm.py. Should read `function` rather than `funciton`. --- jupyterhub/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/orm.py b/jupyterhub/orm.py index cc96ca88..dca18f04 100644 --- a/jupyterhub/orm.py +++ b/jupyterhub/orm.py @@ -318,7 +318,7 @@ class Expiring: which should be unix timestamp or datetime object """ - now = utcnow # funciton, must return float timestamp or datetime + now = utcnow # function, must return float timestamp or datetime expires_at = None # must be defined @property