diff --git a/include/bw_common.h b/include/bw_common.h
index d9b1c50..39f48de 100644
--- a/include/bw_common.h
+++ b/include/bw_common.h
@@ -23,7 +23,7 @@
* version {{{ 1.2.0 }}}
* description {{{
* A common header to make sure that a bunch of basic definitions are
- * available and consistent for all Brickworks modules.
+ * available and consistent for all modules.
* }}}
* changelog {{{
*
@@ -34,6 +34,7 @@
* BW_CXX_NO_EXTERN_C
.
* - Allowed custom definitions of
BW_NULL
.
* - Accomodate MSVC reporting incorrect C++ standard support.
+ * - Removed "Brickworks" references in the documentation.
*
* Version 1.1.0:
*
@@ -106,37 +107,36 @@
*
* #### BW_INCLUDE_WITH_QUOTES
*
- * Normally Brickworks modules include other such modules using angle
- * brackets.
+ * Normally, modules include other such modules using angle brackets.
*
* If you would rather prefer that to happen using double quotes, you can
* define `BW_INCLUDE_WITH_QUOTES`.
*
* #### BW_NO_CXX
*
- * If `BW_NO_CXX` is defined, the C++ APIs and implementations in Brickworks
- * modules are not included.
+ * If `BW_NO_CXX` is defined, the C++ APIs and implementations in modules
+ * are not included.
*
* #### BW_CXX_NO_EXTERN_C
*
- * Normally, the C APIs and implementations in Brickworks modules are
- * included in extern "C"
blocks when using a C++ compiler, even
- * if BW_NO_CXX
is defined.
+ * Normally, the C APIs and implementations in modules are included in
+ * extern "C"
blocks when using a C++ compiler, even if
+ * BW_NO_CXX
is defined.
*
* If you don't want to have them included in such blocks, you can define
* `BW_CXX_NO_EXTERN_C`.
*
* #### BW_CXX_NO_ARRAY
*
- * C++ APIs of Brickworks modules typically include overloaded methods that
- * use `std::array` arguments, and thus require the `` header file.
+ * C++ APIs in modules typically include overloaded methods that use
+ * `std::array` arguments, and thus require the `` header file.
*
* If this is not wanted, defining `BW_CXX_NO_ARRAY` suppresses such methods
* and the inclusion of said header file.
*
* #### Basic definitions
*
- * Brickworks requires definitions of:
+ * Modules require definitions of:
*
* * `NULL` (C only) and `size_t`, normally supplied by `stddef.h`;
* * `(u)int{8,16,32,64}_t`, `INT{8,16,32,64}_{MIN,MAX}`, and