git: 09acd30360 - main - handbook/wayland: Fix sysrc command

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Mon, 15 Apr 2024 21:10:51 UTC
The branch main has been updated by dbaio:

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

commit 09acd303601bf48e86ef09824aa335f0c8bb6bef
Author:     Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2024-04-15 21:00:35 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2024-04-15 21:00:35 +0000

    handbook/wayland: Fix sysrc command
    
    If you copied and pasted from the Handbook, this is what would have
    happened:
    
      # sysrc seatd_enable=”YES”
      seatd_enable:  -> ”YES”
      rc.conf: seatd_enable="”YES”"
    
    Reported by:    garga
---
 documentation/content/en/books/handbook/wayland/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/handbook/wayland/_index.adoc b/documentation/content/en/books/handbook/wayland/_index.adoc
index b40bdefd4d..2b1721c845 100644
--- a/documentation/content/en/books/handbook/wayland/_index.adoc
+++ b/documentation/content/en/books/handbook/wayland/_index.adoc
@@ -129,7 +129,7 @@ To enable and start the `seatd` daemon now, and on system initialization:
 
 [source,shell]
 ----
-# sysrc seatd_enable=”YES”
+# sysrc seatd_enable="YES"
 # service seatd start
 ----