Skip to content

Commit 3316832

Browse files
committed
Typo fix
1 parent a8a90f5 commit 3316832

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

NStack/NStack.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
@@ -18,7 +18,8 @@
1818
It 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' ">

NStack/unicode/Rune.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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).

0 commit comments

Comments
 (0)