File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 55 <PropertyGroup >
66 <TargetFramework >netstandard1.5</TargetFramework >
77 <PackageId >NStack.Core</PackageId >
8- <PackageVersion >0.5 </PackageVersion >
8+ <PackageVersion >0.6 </PackageVersion >
99 <Authors >Miguel de Icaza</Authors >
1010 <PackageLicenseUrl >https://github.com/migueldeicaza/NStack/blob/master/LICENSE.md</PackageLicenseUrl >
1111 <Owners >Miguel de Icaza</Owners >
1818It starts with a new string type that is focused on Unicode code-points as opposed to the historical chars and UTF-16 encoding and introduces a utf8 string that supports slicing</Description >
1919 <ReleaseVersion >0.3</ReleaseVersion >
2020 <PackageReleaseNotes >* Renamed some methods to match the equivalent methods in Char.
21- * Introduced Substring (int start)</PackageReleaseNotes >
21+ * Introduced Substring (int start)
22+ * Typo fix</PackageReleaseNotes >
2223 </PropertyGroup >
2324
2425 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ public static bool ValidRune (Rune rune)
549549 /// <param name="rune">The rune to test for.</param>
550550 /// <remarks>
551551 /// </remarks>
552- public static bool IsLetteOrDigit ( Rune rune ) => NStack . Unicode . IsLetter ( rune . value ) || NStack . Unicode . IsDigit ( rune . value ) ;
552+ public static bool IsLetterOrDigit ( Rune rune ) => NStack . Unicode . IsLetter ( rune . value ) || NStack . Unicode . IsDigit ( rune . value ) ;
553553
554554 /// <summary>
555555 /// IsLetterOrDigit reports whether the rune is a letter (category L) or a number (caetegory N).
@@ -558,7 +558,7 @@ public static bool ValidRune (Rune rune)
558558 /// <param name="rune">The rune to test for.</param>
559559 /// <remarks>
560560 /// </remarks>
561- public static bool IsLetteOrNumber ( Rune rune ) => NStack . Unicode . IsLetter ( rune . value ) || NStack . Unicode . IsNumber ( rune . value ) ;
561+ public static bool IsLetterOrNumber ( Rune rune ) => NStack . Unicode . IsLetter ( rune . value ) || NStack . Unicode . IsNumber ( rune . value ) ;
562562
563563 /// <summary>
564564 /// IsMark reports whether the rune is a letter (category M).
You can’t perform that action at this time.
0 commit comments