From 22f10dc4e6039d68302da61ca480a5fc882887a4 Mon Sep 17 00:00:00 2001 From: Joel Date: Tue, 9 Nov 2021 04:08:33 +1000 Subject: [PATCH] fix: typo on no search results page (#370) --- src/Search.elm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Search.elm b/src/Search.elm index 9af1eed..afb6004 100644 --- a/src/Search.elm +++ b/src/Search.elm @@ -883,11 +883,11 @@ viewNoResults : viewNoResults categoryName = div [ class "search-no-results" ] [ h2 [] [ text <| "No " ++ categoryName ++ " found!" ] - , text "How to " - , Html.a [ href "https://nixos.org/manual/nixpkgs/stable/#chap-quick-start" ] [ text "add" ] + , text "You might want to " + , Html.a [ href "https://nixos.org/manual/nixpkgs/stable/#chap-quick-start" ] [ text "add a package" ] , text " or " - , a [ href "https://github.com/NixOS/nixpkgs/issues/new?assignees=&labels=0.kind%3A+packaging+request&template=packaging_request.md&title=" ] [ text "request" ] - , text " package to nixpkgs?" + , a [ href "https://github.com/NixOS/nixpkgs/issues/new?assignees=&labels=0.kind%3A+packaging+request&template=packaging_request.md&title=" ] [ text "make a packaging request" ] + , text "." ]