From: Dominik Csapak Date: Tue, 13 Feb 2018 10:54:11 +0000 (+0100) Subject: fix typo in api viewer X-Git-Url: https://git.proxmox.com/?p=pve-docs.git;a=commitdiff_plain;h=4a0cf6f8458d2f3c20765b690b162f1b95fb9fc6 fix typo in api viewer authententification -> authentication authententicated -> authenticated Signed-off-by: Dominik Csapak --- diff --git a/api-viewer/PVEAPI.js b/api-viewer/PVEAPI.js index 394dda1..409214d 100644 --- a/api-viewer/PVEAPI.js +++ b/api-viewer/PVEAPI.js @@ -212,9 +212,9 @@ Ext.onReady(function() { if (info.permissions.user) { if (!info.permissions.description) { if (info.permissions.user === 'world') { - permhtml += "Accessible without any authententification."; + permhtml += "Accessible without any authentication."; } else if (info.permissions.user === 'all') { - permhtml += "Accessible by all authententicated users."; + permhtml += "Accessible by all authenticated users."; } else { permhtml += 'Onyl accessible by user "' + info.permissions.user + '"';