Skip to content

Commit 5e0ef7e

Browse files
Merge pull request #250 from MaherJendoubi/spelling
Fixed some spelling issues
2 parents 5300609 + ed6ebe9 commit 5e0ef7e

25 files changed

+24
-51
lines changed

Changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ ElectronNET.API:
6565
ElectronNET.CLI:
6666

6767
* More options on the 'build' command, e.g. for a 32bit debug build with electron prune: build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params "--prune=true "
68-
* .NET Core project is now build with Release configuration, but can be adjusted with the new params.
68+
* .NET Core project is now built with Release configuration but can be adjusted with the new params.
6969
* Be aware: "Breaking" (but because of the alpha status of this project, we won't use SemVer)
7070

7171
# 0.0.8
7272

73-
This version was skipped because we unfortunatly released a pre version of this on NuGet.
73+
This version was skipped because we unfortunately released a pre-version of this on NuGet.
7474

7575
# 0.0.7
7676

@@ -83,7 +83,7 @@ ElectronNET.CLI:
8383

8484
ElectronNET.CLI:
8585

86-
* nuget packages are now release bits and have the correct assembly verion
86+
* nuget packages are now release bits and have the correct assembly version
8787
* Version command
8888
* better devCleanup.cmd
8989
* Better Platform Support Issue - thanks to @Petermarcu

ElectronNET.API/App.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using Newtonsoft.Json.Linq;
44
using Newtonsoft.Json.Serialization;
55
using System;
6-
using System.Runtime.InteropServices;
76
using System.Threading;
87
using System.Threading.Tasks;
98

@@ -374,7 +373,7 @@ internal static App Instance
374373
}
375374

376375
private static App _app;
377-
private static object _syncRoot = new Object();
376+
private static object _syncRoot = new object();
378377

379378
private JsonSerializer _jsonSerializer = new JsonSerializer()
380379
{

ElectronNET.API/BridgeConnector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace ElectronNET.API
66
internal static class BridgeConnector
77
{
88
private static Socket _socket;
9-
private static object _syncRoot = new Object();
9+
private static object _syncRoot = new object();
1010

1111
public static Socket Socket
1212
{

ElectronNET.API/Clipboard.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using Newtonsoft.Json;
33
using Newtonsoft.Json.Linq;
44
using Newtonsoft.Json.Serialization;
5-
using System;
65
using System.Threading.Tasks;
76

87
namespace ElectronNET.API
@@ -13,7 +12,7 @@ namespace ElectronNET.API
1312
public sealed class Clipboard
1413
{
1514
private static Clipboard _clipboard;
16-
private static object _syncRoot = new Object();
15+
private static object _syncRoot = new object();
1716

1817
internal Clipboard() { }
1918

ElectronNET.API/Dialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace ElectronNET.API
1515
public sealed class Dialog
1616
{
1717
private static Dialog _dialog;
18-
private static object _syncRoot = new Object();
18+
private static object _syncRoot = new object();
1919

2020
internal Dialog() { }
2121

ElectronNET.API/ElectronNET.API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Product>Electron.NET</Product>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1212
<PackageProjectUrl>https://github.com/ElectronNET/Electron.NET/</PackageProjectUrl>
13-
<Description>Building cross platform electron based desktop apps with .NET Core and ASP.NET NET Core.
13+
<Description>Building cross platform electron based desktop apps with .NET Core and ASP.NET Core.
1414
This package contains the API to access the "native" electron API.</Description>
1515
<RepositoryUrl>https://github.com/ElectronNET/Electron.NET/</RepositoryUrl>
1616
<RepositoryType>git</RepositoryType>

ElectronNET.API/Entities/EnableNetworkEmulationOptions.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace ElectronNET.API.Entities
1+
namespace ElectronNET.API.Entities
62
{
73
/// <summary>
84
///

ElectronNET.API/Entities/LoadURLOptions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Collections.Generic;
2-
3-
namespace ElectronNET.API.Entities
1+
namespace ElectronNET.API.Entities
42
{
53
/// <summary>
64
///

ElectronNET.API/Entities/ProxyConfig.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace ElectronNET.API.Entities
1+
namespace ElectronNET.API.Entities
62
{
73
/// <summary>
84
///

ElectronNET.API/GlobalShortcut.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace ElectronNET.API
1010
public sealed class GlobalShortcut
1111
{
1212
private static GlobalShortcut _globalShortcut;
13-
private static object _syncRoot = new Object();
13+
private static object _syncRoot = new object();
1414

1515
internal GlobalShortcut() { }
1616

0 commit comments

Comments
 (0)