From f78d652cd67e1dd243b6b468b9ca818315a6075e Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 8 Jun 2018 14:18:14 -0700 Subject: [PATCH] fix missing brackets --- docs/source/reference/authenticators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/reference/authenticators.md b/docs/source/reference/authenticators.md index 6b64aaed..c14c0a76 100644 --- a/docs/source/reference/authenticators.md +++ b/docs/source/reference/authenticators.md @@ -210,8 +210,8 @@ class MyAuthenticator(Authenticator): ## pre_spawn_start and post_spawn_stop hooks -Authenticators uses two hooks, [`pre_spawn_start(user, spawner)`] and -[`post_spawn_stop(user, spawner)`] to add pass additional state information +Authenticators uses two hooks, [`pre_spawn_start(user, spawner)`][] and +[`post_spawn_stop(user, spawner)`][] to add pass additional state information between the authenticator and a spawner. These hooks are typically used auth-related startup, i.e. opening a PAM session, and auth-related cleanup, i.e. closing a PAM session.