Skip to content

Commit 99d894b

Browse files
authored
README: Fix links
1 parent 42e8019 commit 99d894b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ Example:
122122
### Dynamically Parsing and Converting Quantities
123123
Sometimes you need to work with quantities and units at runtime, such as parsing user input.
124124
There are three classes to help with this:
125-
- [UnitParser]() for parsing unit abbreviation strings like `cm` to `LengthUnit.Centimeter`
126-
- [UnitAbbreviationsCache]() for looking up unit abbreviations like `cm` given type `LengthUnit` and value `1` (`Centimeter`)
127-
- [UnitConverter]() for converting values given a quantity name `Length`, a value `1` and from/to unit names `Centimeter` and `Meter`
125+
- [UnitParser](UnitsNet/CustomCode/UnitParser.cs) for parsing unit abbreviation strings like `cm` to `LengthUnit.Centimeter`
126+
- [UnitAbbreviationsCache](UnitsNet/CustomCode/UnitAbbreviationsCache.cs) for looking up unit abbreviations like `cm` given type `LengthUnit` and value `1` (`Centimeter`)
127+
- [UnitConverter](UnitsNet/UnitConverter.cs) for converting values given a quantity name `Length`, a value `1` and from/to unit names `Centimeter` and `Meter`
128128

129129
```c#
130130
// This type was perhaps selected by the user in GUI from a list of units

0 commit comments

Comments
 (0)