Skip to content

Commit

Permalink
Merge bitcoin#29875: chore: fix some typos in comments
Browse files Browse the repository at this point in the history
b1ee4a5 chore: fix some typos in comments (StevenMia)

Pull request description:

  Fixes typos.

ACKs for top commit:
  fanquake:
    ACK b1ee4a5

Tree-SHA512: 29a93db2091337ac6fd1e403f12b2c96be4c22e783a60dbf5b3e3988b962246b58705ca3c1274ed1ad2623f7632ac7eb90ca1e8b7e7992bc9d2f046f73cdf4d6
  • Loading branch information
fanquake committed Apr 17, 2024
2 parents dd9007d + b1ee4a5 commit 5562f69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion depends/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ From the [Gentoo Wiki entry](https://wiki.gentoo.org/wiki/Project:Quality_Assura
> creates. This leads to massive overlinking, which is toxic to the Gentoo
> ecosystem, as it leads to a massive number of unnecessary rebuilds.
Where possible, packages are built with Position Independant Code. Either using
Where possible, packages are built with Position Independent Code. Either using
the Autotools `--with-pic` flag, or `CMAKE_POSITION_INDEPENDENT_CODE` with CMake.

## Secondary dependencies:
Expand Down
6 changes: 3 additions & 3 deletions src/util/subprocess.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,8 @@ namespace detail {
// Metaprogram for searching a type within
// a variadic parameter pack
// This is particularly required to do a compile time
// checking of the arguments provided to 'check_ouput' function
// wherein the user is not expected to provide an 'ouput' option.
// checking of the arguments provided to 'check_output' function
// wherein the user is not expected to provide an 'output' option.

template <typename... T> struct param_pack{};

Expand All @@ -997,7 +997,7 @@ struct has_type<F, param_pack<H,T...>> {
/*!
* A helper class to Popen class for setting
* options as provided in the Popen constructor
* or in check_ouput arguments.
* or in check_output arguments.
* This design allows us to _not_ have any fixed position
* to any arguments and specify them in a way similar to what
* can be done in python.
Expand Down

0 comments on commit 5562f69

Please sign in to comment.