Skip to content

Commit e2a1c50

Browse files
committed
docs: "physics" replaced with "domain" in the README file
1 parent d7216e6 commit e2a1c50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
## 🎯 Overview
2323

2424
**`mp-units`** is the only Modern C++ (C++20 and later) library providing the full
25-
spectrum of compile‑time safety for physical quantities and units — from dimensional
26-
analysis to quantity kind safety — built on the ISO 80000 International System of
27-
Quantities (ISQ).
25+
spectrum of compile‑time safety for domain-specific quantities and units — from
26+
dimensional analysis to quantity kind safety — built on the ISO 80000 International
27+
System of Quantities (ISQ).
2828

2929
```cpp
3030
#include <mp-units/systems/isq.h>
@@ -36,7 +36,7 @@ using namespace mp_units::si::unit_symbols;
3636
// Compile-time dimensional analysis — zero runtime overhead
3737
static_assert(1 * km / (1 * s) == 1000 * m / s);
3838

39-
// Function signatures encode physics, not just dimensions
39+
// Function signatures encode domain/physics, not just dimensions
4040
void calculate_trajectory(QuantityOf<isq::kinetic_energy> auto e);
4141

4242
int main()

0 commit comments

Comments
 (0)