diff options
author | Efraim Flashner <[email protected]> | 2025-02-19 11:11:03 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-02-19 11:21:47 +0200 |
commit | 66daf46b411ea68893d3066e654f38fc05d6f286 (patch) | |
tree | 2ce35923cbe23e485b483ad93db0a93bf144aee7 /gnu/home | |
parent | 77ad73b333d80b60dd9861c75d1dd93d3e4ae33c (diff) |
gnu: Fix some misspellings.
Change-Id: I316652aff7418af4b8e83bea24638b1513f8aa97
Diffstat (limited to 'gnu/home')
-rw-r--r-- | gnu/home/services.scm | 2 | ||||
-rw-r--r-- | gnu/home/services/sway.scm | 2 | ||||
-rw-r--r-- | gnu/home/services/xdg.scm | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 39c9033ad6..3b6fe28e1d 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm @@ -431,7 +431,7 @@ activation."))) (format #f "/run/user/~a" (getuid)))) (flag-file-path (string-append xdg-runtime-dir "/on-first-login-executed"))) - ;; XDG_RUNTIME_DIR dissapears on logout, that means such trick + ;; XDG_RUNTIME_DIR disappears on logout, that means such trick ;; allows to launch on-first-login script on first login only ;; after complete logout/reboot. (if (file-exists? xdg-runtime-dir) diff --git a/gnu/home/services/sway.scm b/gnu/home/services/sway.scm index 0e1a2d57b2..eebc65766e 100644 --- a/gnu/home/services/sway.scm +++ b/gnu/home/services/sway.scm @@ -487,7 +487,7 @@ ;; the above list. Each function either returns a list, or elements that will ;; be put in one. The elements of these lists will either be: ;; - strings, -;; In this case, the string is seen as a line to add to the configuraiton +;; In this case, the string is seen as a line to add to the configuration ;; file. ;; - a pair (cons 'begin-block string), ;; In this case, a line "string {" is added to the configuration file, and diff --git a/gnu/home/services/xdg.scm b/gnu/home/services/xdg.scm index 872db6902a..c5aaa77fad 100644 --- a/gnu/home/services/xdg.scm +++ b/gnu/home/services/xdg.scm @@ -95,7 +95,7 @@ this directory should contain static configurations.") (data-home (path "$HOME/.local/share") "Base directory for programs to store architecture independent -read-only shared data, analogus to @file{/usr/share}, but for user.") +read-only shared data, analogous to @file{/usr/share}, but for user.") (runtime-dir (path "${XDG_RUNTIME_DIR:-/run/user/$UID}") "Base directory for programs to store user-specific runtime files, @@ -103,7 +103,7 @@ like sockets.") ;; TODO: deprecated field, use $XDG_STATE_HOME(/log) instead. (log-home maybe-path - "Base directory for programs to store log files, analogus to + "Base directory for programs to store log files, analogous to @file{/var/log}, but for user. It is not a part of XDG Base Directory Specification, but helps to make implementation of home services more consistent." |