Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Sep 10, 2024
1 parent 2960c7c commit 2100e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/WorkflowGuidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
* Do not use edge-values to denote absence of value. Example: use null (`Nullable<DateTime>`) instead of `DateTime.MinValue`.
* Use Option types instead of Nullable ones if your language provides it (e.g. if you're using F# instead of C#).
* Do not use `undefined` which is a pitfall from JavaScript (the fact that it has two kinds of null values is a defect in
its design). As we're using TypeScript we should be able to avoid the uglyness of JavaScript.
its design). As we're using TypeScript we should be able to avoid the ugliness of JavaScript.

Example (with bad practice):
```typescript
Expand Down

0 comments on commit 2100e2c

Please sign in to comment.