diff options
Diffstat (limited to 'gr-blocks/include')
6 files changed, 6 insertions, 6 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/endian_swap.h b/gr-blocks/include/gnuradio/blocks/endian_swap.h index f73eae3306..379ee734c7 100644 --- a/gr-blocks/include/gnuradio/blocks/endian_swap.h +++ b/gr-blocks/include/gnuradio/blocks/endian_swap.h @@ -30,7 +30,7 @@ namespace gr { namespace blocks { /*! - * \brief Convert stream of items into thier byte swapped version + * \brief Convert stream of items into their byte swapped version * \ingroup stream_operators_blk */ class BLOCKS_API endian_swap : virtual public sync_block diff --git a/gr-blocks/include/gnuradio/blocks/pack_k_bits.h b/gr-blocks/include/gnuradio/blocks/pack_k_bits.h index ed1971de2b..4197225ad4 100644 --- a/gr-blocks/include/gnuradio/blocks/pack_k_bits.h +++ b/gr-blocks/include/gnuradio/blocks/pack_k_bits.h @@ -32,7 +32,7 @@ namespace gr { /*! * \brief Converts a vector of bytes with 1 bit in the LSB to a - * byte with k relevent bits. + * byte with k relevant bits. * * Example: * k = 4 diff --git a/gr-blocks/include/gnuradio/blocks/pack_k_bits_bb.h b/gr-blocks/include/gnuradio/blocks/pack_k_bits_bb.h index af77aec18f..d71e73c580 100644 --- a/gr-blocks/include/gnuradio/blocks/pack_k_bits_bb.h +++ b/gr-blocks/include/gnuradio/blocks/pack_k_bits_bb.h @@ -31,7 +31,7 @@ namespace gr { /*! * \brief Converts a stream of bytes with 1 bit in the LSB to a - * byte with k relevent bits. + * byte with k relevant bits. * * This block takes in K bytes at a time, and uses the least significant * bit to form a new byte. diff --git a/gr-blocks/include/gnuradio/blocks/peak_detector_XX.h.t b/gr-blocks/include/gnuradio/blocks/peak_detector_XX.h.t index 2885a9b8ff..a255e46f0b 100644 --- a/gr-blocks/include/gnuradio/blocks/peak_detector_XX.h.t +++ b/gr-blocks/include/gnuradio/blocks/peak_detector_XX.h.t @@ -56,7 +56,7 @@ namespace gr { * \param threshold_factor_fall The threshold factor determins * when a peak has ended. An average of the signal is * calculated and when the value of the signal goes - * bellow threshold_factor_fall*average, we stop looking + * below threshold_factor_fall*average, we stop looking * for a peak. * \param look_ahead The look-ahead value is used when the * threshold is found to look if there another peak diff --git a/gr-blocks/include/gnuradio/blocks/unpack_k_bits.h b/gr-blocks/include/gnuradio/blocks/unpack_k_bits.h index 389579a2f8..8d46e57edd 100644 --- a/gr-blocks/include/gnuradio/blocks/unpack_k_bits.h +++ b/gr-blocks/include/gnuradio/blocks/unpack_k_bits.h @@ -31,7 +31,7 @@ namespace gr { namespace kernel { /*! - * \brief Converts a byte with k relevent bits to k output bytes with 1 bit in the LSB. + * \brief Converts a byte with k relevant bits to k output bytes with 1 bit in the LSB. * * This is the algorithm kernel for the gr::blocks::unpack_k_bits_bb block. * diff --git a/gr-blocks/include/gnuradio/blocks/unpack_k_bits_bb.h b/gr-blocks/include/gnuradio/blocks/unpack_k_bits_bb.h index 73e3ca2ac4..2ed57e08bd 100644 --- a/gr-blocks/include/gnuradio/blocks/unpack_k_bits_bb.h +++ b/gr-blocks/include/gnuradio/blocks/unpack_k_bits_bb.h @@ -30,7 +30,7 @@ namespace gr { namespace blocks { /*! - * \brief Converts a byte with k relevent bits to k output bytes with 1 bit in the LSB. + * \brief Converts a byte with k relevant bits to k output bytes with 1 bit in the LSB. * * This block picks the K least significant bits from a byte, and expands * them into K bytes of 0 or 1. |