aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanilo G. Baio <dbaio@FreeBSD.org>2024-04-15 21:00:35 +0000
committerDanilo G. Baio <dbaio@FreeBSD.org>2024-04-15 21:00:35 +0000
commit09acd303601bf48e86ef09824aa335f0c8bb6bef (patch)
tree2ef6fc8fc976a482983144f08cc7db1aef5ad8cc
parent86533efebecb59641a4a9ecb56b6a06d03ae44e3 (diff)
downloaddoc-09acd303601bf48e86ef09824aa335f0c8bb6bef.tar.gz
doc-09acd303601bf48e86ef09824aa335f0c8bb6bef.zip
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
-rw-r--r--documentation/content/en/books/handbook/wayland/_index.adoc2
1 files changed, 1 insertions, 1 deletions
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
----