You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/development/parameters.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,8 @@ HORUS supports all JSON-compatible types:
71
71
- **Numbers** - `f64`, `i64`, `u64` (stored as `Value::Number`)
72
72
- **Strings** - `String` (stored as `Value::String`)
73
73
- **Booleans** - `bool` (stored as `Value::Bool`)
74
-
- **Arrays** - `Vec<T>` (stored as `Value::Array`)
75
-
- **Objects** - `HashMap<String, T>` (stored as `Value::Object`)
74
+
- **Arrays** - `Vec\<T\>` (stored as `Value::Array`)
75
+
- **Objects** - `HashMap\<String, T\>` (stored as `Value::Object`)
76
76
77
77
### Hierarchical Keys
78
78
@@ -193,7 +193,7 @@ node! {
193
193
}
194
194
```
195
195
196
-
**Performance note:** Parameter access is fast (~80-350ns via `Arc<RwLock>`), but avoid reading hundreds of parameters every tick. Cache values and reload periodically.
196
+
**Performance note:** Parameter access is fast (~80-350ns via `Arc\<RwLock\>`), but avoid reading hundreds of parameters every tick. Cache values and reload periodically.
0 commit comments