diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-11 13:18:30 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-11 13:18:30 -0400 |
| commit | 294b712e6dabc722772f86aaa9d0faaa08c14717 (patch) | |
| tree | f24ab45434d5bf2d5ebd64b0d533d4d361e9daff /docs | |
| parent | d254b440f8359b42a097edfeb2db1585fd20c695 (diff) | |
Don't use '$' prefix for field names
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/namespacing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/namespacing.md b/docs/namespacing.md index 58638411..e8b13305 100644 --- a/docs/namespacing.md +++ b/docs/namespacing.md @@ -54,7 +54,7 @@ static Text_t foo$Baz$as_text(foo$Baz_t *obj, bool use_color) public Int_t foo$Baz$frob(struct foo$Baz_s $b) { - return ($b).$x; + return ($b).x; } ... ``` |
