summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorutkonos <utkonos@users.noreply.github.com>2025-01-20 10:35:59 -0500
committerPeter LaFosse <peter@vector35.com>2025-01-21 12:41:29 -0500
commitf1eccb70c2f23fc6665733d8c911b21eb36cbcf5 (patch)
treec9c96786473c1a497c01299f7ce863323c73f8f4 /docs/dev
parente78cae77103b5396ce42d9e33593ea55f9135be0 (diff)
Fix typo
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/typelibraries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/typelibraries.md b/docs/dev/typelibraries.md
index dccb9102..aeb3f5bb 100644
--- a/docs/dev/typelibraries.md
+++ b/docs/dev/typelibraries.md
@@ -92,7 +92,7 @@ The following demonstrates attributes of interest on a loaded type library in va
print('\t"%s" %s' % (str(key), str(val)))
```
-Named objects (via dictionary `.named_objects` are functions signatures and a module's exported variables. Named types (via dictionary `.named_types`) are the textual named you might use to declare a variable. For example,
+Named objects (via dictionary `.named_objects` are functions signatures and a module's exported variables. Named types (via dictionary `.named_types`) are the textual names you might use to declare a variable. For example,
For example, `.named_objects['fegetexceptionflag']` looks up its function prototype: `int32_t (fexcept_t* flagp)` and `.named_types['fexcept_t']` looks up `uint16_t`, its typedef.