From 6886689b6bee217a74fc1cc4e01e341fee015a06 Mon Sep 17 00:00:00 2001 From: Jesse Smith Date: Mon, 2 Sep 2019 14:10:12 -0300 Subject: [PATCH] Fixed typo in README file. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17ee114..e242cb7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # doas A port of OpenBSD's doas which runs on FreeBSD, Linux, NetBSD, and illumos -The doas utility is a program originally written for OpenBSD which allows a user to run a command as though they were another user. Typically doas is used to allow non-privleged users to run commands as though they were the root user. The doas program acts as an alternative to sudo, which is a popular method in the Linux ccommunity for granting admin access to specific users. +The doas utility is a program originally written for OpenBSD which allows a user to run a command as though they were another user. Typically doas is used to allow non-privleged users to run commands as though they were the root user. The doas program acts as an alternative to sudo, which is a popular method in the Linux community for granting admin access to specific users. The doas program offers two benefits over sudo: its configuration file has a simple syntax and it is smaller, requiring less effort to audit the code. This makes it harder for both admins and coders to make mistakes that potentially open security holes in the system.