From d056e1fc7dbae20d61858135ce3217eab647a3f7 Mon Sep 17 00:00:00 2001 From: Ivan Povazan Date: Fri, 8 Nov 2024 17:53:46 +0100 Subject: [PATCH] Fix lint --- .../NativeLibrary/ios-like-native-libraries-with-nativeaot.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/nativeaot/NativeLibrary/ios-like-native-libraries-with-nativeaot.md b/core/nativeaot/NativeLibrary/ios-like-native-libraries-with-nativeaot.md index a2119447c1b..ed77d0f8b65 100644 --- a/core/nativeaot/NativeLibrary/ios-like-native-libraries-with-nativeaot.md +++ b/core/nativeaot/NativeLibrary/ios-like-native-libraries-with-nativeaot.md @@ -23,7 +23,7 @@ This section describes steps to create a simple .NET Class Library project with ```cs using System.Runtime.InteropServices; namespace NaotLib; - + public class Class1 { [UnmanagedCallersOnly(EntryPoint = "aotsample_add")] @@ -90,7 +90,7 @@ This section describes all required steps to achieve this and a simple scenario - `LC_RPATH` load command ```bash - install_name_tool -rpath @executable_path @executable_path/Frameworks MyNativeAOTLibrary/bin/Release/net9.0/ios-arm64/publish/MyNativeAOTLibrary.dylib + install_name_tool -rpath @executable_path @executable_path/Frameworks MyNativeAOTLibrary/bin/Release/net9.0/ios-arm64/publish/MyNativeAOTLibrary.dylib ``` - `LC_ID_DYLIB` load command