about summary refs log tree commit diff
path: root/pkgs/profpatsch
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-02-17 18:31:55 +0100
committersternenseemann <sternenseemann@systemli.org>2021-02-25 19:52:33 +0100
commit2ae38412ed6f775dc41fb3fcf91ffe85d1e45c20 (patch)
treeda7809bbcaef96467c5f256ecdb7e90ab2b32da0 /pkgs/profpatsch
parenta696d200515195bf6dffaf3822a36393d26d6292 (diff)
pkgs/profpatsch/nman: typo fixes
Diffstat (limited to 'pkgs/profpatsch')
-rw-r--r--pkgs/profpatsch/nman/nman.12
-rw-r--r--pkgs/profpatsch/nman/nman.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/profpatsch/nman/nman.1 b/pkgs/profpatsch/nman/nman.1
index b82cb1de..4c8e2805 100644
--- a/pkgs/profpatsch/nman/nman.1
+++ b/pkgs/profpatsch/nman/nman.1
@@ -24,7 +24,7 @@ to do.
 .Pp
 You can invoke
 .Nm
-in three different ways:
+in four different ways:
 .Bl -ohang -offset 2n
 .It Nm Ar ATTR SECTION PAGE
 Evaluates the attribute
diff --git a/pkgs/profpatsch/nman/nman.rs b/pkgs/profpatsch/nman/nman.rs
index 426807a9..6cb5f54c 100644
--- a/pkgs/profpatsch/nman/nman.rs
+++ b/pkgs/profpatsch/nman/nman.rs
@@ -89,7 +89,7 @@ enum DrvOutput<'a> {
 impl<'a> DrvOutput<'a> {
     /// Convert a string (Nix strings may be arbitrary bytes)
     /// into a parsed [`DrvOutput`]. No sanity checking is
-    /// done, anything strange is pased into [`DrvOutput::Other`].
+    /// done, anything strange is passed into [`DrvOutput::Other`].
     fn parse(output: &'a [u8]) -> Self {
         match output {
             b"out" => DrvOutput::Out,