try-ok 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -108,7 +108,7 @@ if (result.isError) {
108
108
  I actually found a lot of similar OSS!
109
109
  Seems like developers everywhere have had the same idea haha.
110
110
 
111
- Still, try-result has a slightly different goal:
111
+ Still, try-ok has a slightly different goal:
112
112
  it focuses on stronger type safety and explicit error handling using a clean Result pattern.
113
113
 
114
114
  If you prefer predictable control flow and safer TypeScript,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "try-ok",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Type-safe error handling for async operations using Result pattern",
5
5
  "type": "module",
6
6
  "main": "./dist/try-ok.cjs",