Skip to content

Commit a61ba63

Browse files
committed
Fixed a minor flaws
1 parent efb2c6c commit a61ba63

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</Content>
8484
</ItemGroup>
8585

86-
<Target Name="СonvertResxToCs" BeforeTargets="BeforeCompile">
86+
<Target Name="ConvertResxToCs" BeforeTargets="BeforeCompile">
8787
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
8888
</Target>
8989

src/MsieJavaScriptEngine/Resources/CommonStrings.Designer.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MsieJavaScriptEngine/Resources/CommonStrings.resx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,19 +250,19 @@
250250
<value>Could not find suitable method or not enough arguments to invoke of '{0}' method of the host object.</value>
251251
</data>
252252
<data name="Usage_CannotExecuteEmptyFile" xml:space="preserve">
253-
<value>Сannot execute a '{0}' file, because it is empty.</value>
253+
<value>Cannot execute a '{0}' file, because it is empty.</value>
254254
</data>
255255
<data name="Usage_CannotExecuteEmptyResource" xml:space="preserve">
256-
<value>Сannot execute a '{0}' resource, because it is empty.</value>
256+
<value>Cannot execute a '{0}' resource, because it is empty.</value>
257257
</data>
258258
<data name="Usage_CannotExecutePrecompiledScriptForAnotherJsEngineMode" xml:space="preserve">
259-
<value>Сannot execute a pre-compiled script, because it was created for another mode with name `{0}`.</value>
259+
<value>Cannot execute a pre-compiled script, because it was created for another mode with name `{0}`.</value>
260260
</data>
261261
<data name="Usage_CannotPrecompileEmptyFile" xml:space="preserve">
262-
<value>Сannot pre-compile a '{0}' file, because it is empty.</value>
262+
<value>Cannot pre-compile a '{0}' file, because it is empty.</value>
263263
</data>
264264
<data name="Usage_CannotPrecompileEmptyResource" xml:space="preserve">
265-
<value>Сannot pre-compile a '{0}' resource, because it is empty.</value>
265+
<value>Cannot pre-compile a '{0}' resource, because it is empty.</value>
266266
</data>
267267
<data name="Usage_EmbeddedHostObjectTypeNotSupported" xml:space="preserve">
268268
<value>The embedded host object '{0}' has a type `{1}`, which is not supported.</value>

test/MsieJavaScriptEngine.Test.Common/CommonTestsBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ public virtual void RemovingVariableWithNameContainingUnicodeCharacters()
977977
public virtual void ScriptInterruption()
978978
{
979979
// Arrange
980-
const string sleepyСode = @"function sleep(millisecondsTimeout) {
980+
const string sleepyCode = @"function sleep(millisecondsTimeout) {
981981
var totalMilliseconds = new Date().getTime() + millisecondsTimeout;
982982
983983
while (new Date() < totalMilliseconds)
@@ -1008,7 +1008,7 @@ public virtual void ScriptInterruption()
10081008

10091009
try
10101010
{
1011-
jsEngine.Execute(sleepyСode);
1011+
jsEngine.Execute(sleepyCode);
10121012
}
10131013
catch (Exception e)
10141014
{

0 commit comments

Comments
 (0)