From aafdf2206f360268cf78a2dcc2c722769bfa9377 Mon Sep 17 00:00:00 2001 From: Irwin Date: Wed, 5 Mar 2025 12:30:18 +0100 Subject: [PATCH] Changed Code to Core --- FirstSteps/02b-XSharp_Strings.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FirstSteps/02b-XSharp_Strings.ipynb b/FirstSteps/02b-XSharp_Strings.ipynb index 875d605..a51908d 100644 --- a/FirstSteps/02b-XSharp_Strings.ipynb +++ b/FirstSteps/02b-XSharp_Strings.ipynb @@ -72,7 +72,7 @@ "source": [ "Before going further, let's have a look at the previous code cell :\n", "- `#r \"C:\\Program Files (x86)\\XSharp\\Redist\\XSharp.Core.dll\"` \n", - "This loads the external library `Xsharp.Code.Dll` into the **XSharpInteractive** memory. Adapt the path to your installation if needed.\n", + "This loads the external library `Xsharp.Core.Dll` into the **XSharpInteractive** memory. Adapt the path to your installation if needed.\n", "- `Functions.Upper()` \n", "This will call the `Upper()` function, from the group of tools named `Functions`. In a standard X# application, you don't have to specify the `Functions.` part and just call `Upper()`. Notice you have a put a **dot** between `Functions` and the function name.\n", "- `using XSharp.Core` \n",