summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/perf
diff options
context:
space:
mode:
authorfetsorn <fetsorn@gmail.com>2023-05-08 21:55:12 +0400
committerfetsorn <fetsorn@gmail.com>2023-05-08 22:11:18 +0400
commit849897fa300db00a7957d7d94ef88459d7bd4afc (patch)
tree2b60ea0d6a10a46a952b96cb07fbb89871402b6e /pkgs/os-specific/linux/kernel/perf
parentd454823d203aead2a5536e51b4ef92bd4060ebaf (diff)
downloadnixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar.gz
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar.bz2
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar.lz
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar.xz
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.tar.zst
nixpkgs-849897fa300db00a7957d7d94ef88459d7bd4afc.zip
perf-linux: fix typo
"embeded" -> "embedded"
Diffstat (limited to 'pkgs/os-specific/linux/kernel/perf')
-rw-r--r--pkgs/os-specific/linux/kernel/perf/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/perf/default.nix b/pkgs/os-specific/linux/kernel/perf/default.nix
index 1ae1bae26fd..620ecfc43df 100644
--- a/pkgs/os-specific/linux/kernel/perf/default.nix
+++ b/pkgs/os-specific/linux/kernel/perf/default.nix
@@ -148,7 +148,7 @@ stdenv.mkDerivation {
 
   preFixup = ''
     # Pull in 'objdump' into PATH to make annotations work.
-    # The embeded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream).
+    # The embedded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream).
     # Add python.interpreter to PATH for now.
     wrapProgram $out/bin/perf \
       --prefix PATH : ${lib.makeBinPath [ binutils-unwrapped python3 ]}