git: a1b6b175b2 - main - handbook: Minor tweaks

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Sat, 03 Sep 2022 23:28:37 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/doc/commit/?id=a1b6b175b24ebacf5ac3e7de8ea3c15bb6148be5

commit a1b6b175b24ebacf5ac3e7de8ea3c15bb6148be5
Author:     Jeanne-Kamikaze <msunet@shellblade.net>
AuthorDate: 2022-06-12 00:24:46 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2022-09-03 23:21:55 +0000

    handbook: Minor tweaks
    
    Reviewed by:    pauamma
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/79
---
 documentation/content/en/books/handbook/basics/_index.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/documentation/content/en/books/handbook/basics/_index.adoc b/documentation/content/en/books/handbook/basics/_index.adoc
index 1e2ff5f610..5e6aaa3de2 100644
--- a/documentation/content/en/books/handbook/basics/_index.adoc
+++ b/documentation/content/en/books/handbook/basics/_index.adoc
@@ -679,7 +679,7 @@ In FreeBSD, every file and directory has an associated set of permissions and se
 Understanding how permissions work is necessary to make sure that users are able to access the files that they need and are unable to improperly access the files used by the operating system or owned by other users.
 
 This section discusses the traditional UNIX(R) permissions used in FreeBSD.
-For finer grained file system access control, refer to crossref:security[fs-acl,“Access Control Lists”].
+For finer-grained file system access control, refer to crossref:security[fs-acl,Access Control Lists].
 
 In UNIX(R), basic permissions are assigned using three types of access: read, write, and execute.
 These access types are used to determine file access to the file's owner, group, and others (everyone else).
@@ -730,8 +730,8 @@ When reading the "Directory Listing" column, a `-` is used to represent a permis
 |`rwx`
 |===
 
-Use the `-l` argument to man:ls[1] to view a long directory listing that includes a column of information about a file's permissions for the owner, group, and everyone else.
-For example, an `ls -l` in an arbitrary directory may show:
+Use the `-l` argument with man:ls[1] to view a long directory listing that includes a column of information about a file's permissions for the owner, group, and everyone else.
+For example, `ls -l` in an arbitrary directory may show:
 
 [source,shell]
 ....