summaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-05-30 09:30:44 -0400
committerJordan Wiens <jordan@psifertex.com>2022-05-30 09:30:44 -0400
commit81fe573a56e76dcd6066a632d1831d49d274b469 (patch)
treedfbd1bd02b07c718a903278f098dfd52fe0e4d63 /docs/guide
parentae46528ce4d2ee0dff2da974563d56b16fd0ba79 (diff)
fix list items
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/type.md25
1 files changed, 13 insertions, 12 deletions
diff --git a/docs/guide/type.md b/docs/guide/type.md
index 839970b8..3a7db975 100644
--- a/docs/guide/type.md
+++ b/docs/guide/type.md
@@ -184,18 +184,19 @@ Binary Ninja provides a flexible API for creating and defining types explicitly.
## Simple Type Creation
There are a number of different type objects available for creation:
-* Integer Types
-* Characters Types (technically an integer)
-* Wide Characters Types (also technically an integer)
-* Boolean (guess what? also technically an integer)
-* Float Types (definitely not an integer)
-* Pointers
-* Void (like an integer but if its size was zero)
-* Functions
-* Arrays
-* Enumeration (kind of an integer)
-* Structures (probably has integers in it)
-* Type Definitions
+
+- Integer Types
+- Characters Types (technically an integer)
+- Wide Characters Types (also technically an integer)
+- Boolean (guess what? also technically an integer)
+- Float Types (definitely not an integer)
+- Pointers
+- Void (like an integer but if its size was zero)
+- Functions
+- Arrays
+- Enumeration (kind of an integer)
+- Structures (probably has integers in it)
+- Type Definitions
### Creating Types Using the Type Parser