changeset 5555:34b63d0144c3

mod_oidc_userinfo_vcard4: Fix typo
author Kim Alvefur <zash@zash.se>
date Sun, 18 Jun 2023 15:28:13 +0200
parents 90449babaa48
children dfade0e38930
files mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua	Sat Jun 17 19:03:32 2023 +0200
+++ b/mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua	Sun Jun 18 15:28:13 2023 +0200
@@ -10,7 +10,7 @@
 
 local mod_pep = module:depends "pep";
 
-local gender_map = { M = "male"; F = "female"; O = "other"; N = "nnot applicable"; U = "unknown" }
+local gender_map = { M = "male"; F = "female"; O = "other"; N = "not applicable"; U = "unknown" }
 
 module:hook("token/userinfo", function(event)
 	local pep_service = mod_pep.get_pep_service(event.username);