diff --git a/include/etl/bloom_filter.h b/include/etl/bloom_filter.h
index 711a151b..5d35128c 100644
--- a/include/etl/bloom_filter.h
+++ b/include/etl/bloom_filter.h
@@ -62,17 +62,17 @@ namespace etl
/// An implementation of a bloom filter.
/// Allows up to three hashes to be defined.
/// Hashes must support the () operator and define 'argument_type'.
- ///\tparam DESIRED_WIDTH The desired number of hash results that can be stored. Rounded up to best fit the underlying bitset.
+ ///\tparam Desired_Width The desired number of hash results that can be stored. Rounded up to best fit the underlying bitset.
///\tparam THash1 The first hash generator class.
///\tparam THash2 The second hash generator class. If omitted, uses the null hash.
///\tparam THash3 The third hash generator class. If omitted, uses the null hash.
/// The hash classes must define argument_type.
///\ingroup bloom_filter
//***************************************************************************
- template
+ template
class bloom_filter
{
private:
@@ -85,7 +85,7 @@ namespace etl
enum
{
// Make the most efficient use of the bitset.
- WIDTH = etl::bitset::ALLOCATED_BITS
+ WIDTH = etl::bitset::Allocated_Bits
};
//***************************************************************************