diff --git a/docs/framework/units.rst b/docs/framework/units.rst index ecded34a..c4f8380d 100644 --- a/docs/framework/units.rst +++ b/docs/framework/units.rst @@ -259,17 +259,17 @@ complete list of all the :term:`SI` prefixes supported by the library:: Alternative hierarchy of prefixes is the one used in data information domain:: - namespace data { - - struct prefix : prefix_family {}; - - struct kibi : units::prefix {}; - struct mebi : units::prefix {}; - struct gibi : units::prefix {}; - struct tebi : units::prefix {}; - struct pebi : units::prefix {}; - struct exbi : units::prefix {}; - + namespace iec80000 { + + struct binary_prefix : prefix_family {}; + + struct kibi : units::prefix {}; + struct mebi : units::prefix {}; + struct gibi : units::prefix {}; + struct tebi : units::prefix {}; + struct pebi : units::prefix {}; + struct exbi : units::prefix {}; + } With the definitions like above we can easily define prefixed unit. For