Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Add thou unit #195

Merged
merged 1 commit into from
May 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ Reference
| [Tablespoon](https://en.wikipedia.org/wiki/Tablespoon) | `tablespoons`, `tablespoon`, `tbsp` |
| [Teaspoon](https://en.wikipedia.org/wiki/Teaspoon) | `teaspoons`, `teaspoon`, `tsp` |
| [Tesla](https://en.wikipedia.org/wiki/Tesla_(unit)) | `tesla`, `T` |
| [Thou](https://en.wikipedia.org/wiki/Thousandth_of_an_inch) | `thou` |
| [Tonne](https://en.wikipedia.org/wiki/Tonne) | `tonnes`, `tonne`, `tons`, `ton`, `t` |
| [US Dollar](https://en.wikipedia.org/wiki/USD) | `dollars`, `dollar`, `USD`, `$` |
| [Volt](https://en.wikipedia.org/wiki/Volt) | `volts`, `volt`, `V` |
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"output"
],
"dependencies": {
"purescript-quantities": "^8.2.0",
"purescript-quantities": "^8.3.0",
"purescript-parsing": "^5.0.0",
"purescript-ordered-collections": "^1.0.0",
"jquery.terminal": "=1.6.3",
Expand Down
1 change: 1 addition & 0 deletions docs/reference-units.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
| [Tablespoon](https://en.wikipedia.org/wiki/Tablespoon) | `tablespoons`, `tablespoon`, `tbsp` |
| [Teaspoon](https://en.wikipedia.org/wiki/Teaspoon) | `teaspoons`, `teaspoon`, `tsp` |
| [Tesla](https://en.wikipedia.org/wiki/Tesla_(unit)) | `tesla`, `T` |
| [Thou](https://en.wikipedia.org/wiki/Thousandth_of_an_inch) | `thou` |
| [Tonne](https://en.wikipedia.org/wiki/Tonne) | `tonnes`, `tonne`, `tons`, `ton`, `t` |
| [US Dollar](https://en.wikipedia.org/wiki/USD) | `dollars`, `dollar`, `USD`, `$` |
| [Volt](https://en.wikipedia.org/wiki/Volt) | `volts`, `volt`, `V` |
Expand Down
1 change: 1 addition & 0 deletions src/Insect/Parser.purs
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ imperialUnitDict = Dictionary
, Q.inch ==> ["inches", "inch", "in"]
, Q.yard ==> ["yards", "yard", "yd"]
, Q.foot ==> ["feet", "foot", "ft"]
, Q.thou ==> ["thou"]
, Q.ounce ==> ["ounces", "ounce", "oz"]
, Q.lbf ==> ["pound_force", "lbf"]
, Q.pound ==> ["pounds", "pound", "lb"]
Expand Down