From 4ca6161d2cafd17c9bae6083fc722bd683925153 Mon Sep 17 00:00:00 2001 From: HyperSphereStudio <69430085+HyperSphereStudio@users.noreply.github.com> Date: Tue, 11 Jan 2022 20:00:15 -0500 Subject: [PATCH] Version 1.5.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 180f32c..9146a60 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Julia.Exit(0); Struct Handling: ```csharp - #You have to choices, allocate a struct or create a struct. + #You have two choices, allocate a struct or create a struct. #Allocating directly sets the memory, creating will call a constructor of the struct var myAllocatedStruct = Julia.AllocStruct(JLType.JLRef, 3); //Will throw error @@ -98,9 +98,9 @@ Julia Garbage Collector Pinning: myBasicObj = myBasicCon() handle = pin(myBasicObj) - //Stuff calling Sharp Functions + #Stuff calling Sharp Functions - free(handle) //Will also auto free. You can also treat it like stream and put it in do end block + free(handle) #Will also auto free. You can also treat it like stream and put it in do end block ```