diff options
author | Marius Bakke <marius@gnu.org> | 2020-06-08 21:13:46 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-06-09 20:43:36 +0200 |
commit | 2e08394b3c64ad77cebb94f54677130e4fdaf9e9 (patch) | |
tree | 06b48f44431c218ed786c0eeb2eba17449a10946 /guix | |
parent | 3cf7088fc646e07158914dea1314151123472ec2 (diff) |
import: stackage: Fix typo.
* guix/import/stackage.scm (latest-lts-release): Fix spelling of "included".
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/stackage.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/stackage.scm b/guix/import/stackage.scm index 14150201b5..9572f8c26d 100644 --- a/guix/import/stackage.scm +++ b/guix/import/stackage.scm @@ -122,7 +122,7 @@ included in the Stackage LTS release." (let ((pkgs-info (mlambda () (lts-info-packages (stackage-lts-info-fetch))))) (lambda* (package) "Return an <upstream-source> for the latest Stackage LTS release of -PACKAGE or #f it the package is not inlucded in the Stackage LTS release." +PACKAGE or #f it the package is not included in the Stackage LTS release." (let* ((hackage-name (guix-package->hackage-name package)) (version (lts-package-version (pkgs-info) hackage-name)) (name-version (hackage-name-version hackage-name version))) |