Skip to content

Commit c790e8d

Browse files
committed
fix: typos
1 parent d49735a commit c790e8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/www/content/blog/unkey-flow.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ We use invariants throughout the engine. If dimensions are missing, if a node re
222222
invariant(nodeDim, `Missing dimensions for node ${node.id}`);
223223
```
224224

225-
This is extremely useful technique to catch things during development. We follow this idealogy everywhere in our codebase. Even our Go codebase follows that philosophy.
225+
This is extremely useful technique to catch things during development. We follow this ideology everywhere in our codebase. Even our Go codebase follows that philosophy.
226226

227227
### Depth-First Traversal
228228

@@ -472,7 +472,7 @@ The entire team understands how it works. When we need to change something, we j
472472

473473
We hardcode node dimensions because we know our node types ahead of time. A general-purpose library would need to render nodes off-screen, measure them, then feed those dimensions to the engine. Too much complexity for our use case.
474474

475-
The routing logic is baked in for our specific tree structure. If someone wanted to use this for an org chart or file system tree, they'd need to modify the engine. We need this specifially for our deploy network tab.
475+
The routing logic is baked in for our specific tree structure. If someone wanted to use this for an org chart or file system tree, they'd need to modify the engine. We need this specifically for our deploy network tab.
476476

477477
## Should You Roll Your Own?
478478

0 commit comments

Comments
 (0)