Skip to content

Commit 6cb74bf

Browse files
authored
Merge pull request #3579 from MicrosoftDocs/update56586
Changing HTML entity (') to character (') in titles (metadata and body)
2 parents edc567b + 4bfd672 commit 6cb74bf

20 files changed

+43
-43
lines changed

scripting-docs/javascript/misc/can-t-have-break-outside-of-loop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Can't have 'break' outside of loop | Microsoft Docs"
2+
title: "Can't have 'break' outside of loop | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Can't have 'break' outside of loop
24+
# Can't have 'break' outside of loop
2525
You attempted to use the **break** keyword outside of a loop. The **break** keyword is used to terminate a loop or `switch` statement. It must be embedded in the body of a loop or `switch` statement. However, a **label** can follow the break keyword.
2626

2727
```

scripting-docs/javascript/misc/cannot-assign-to-this.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Cannot assign to 'this' | Microsoft Docs"
2+
title: "Cannot assign to 'this' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Cannot assign to 'this'
24+
# Cannot assign to 'this'
2525
You attempted to assign a value to **this**. **this** is a [!INCLUDE[javascript](../../javascript/includes/javascript-md.md)] keyword that refers to either:
2626

2727
- the object currently executing a method,

scripting-docs/javascript/misc/default-can-only-appear-once-in-a-switch-statement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "'default' can only appear once in a 'switch' statement | Microsoft Docs"
2+
title: "'default' can only appear once in a 'switch' statement | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# 'default' can only appear once in a 'switch' statement
24+
# 'default' can only appear once in a 'switch' statement
2525
You attempted to use the **default** statement more than once within a switch statement. The default case is always the last case statement in a switch statement (it is the fall-through case).
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-at-end.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected '@end' | Microsoft Docs"
2+
title: "Expected '@end' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,13 +21,13 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected '@end'
25-
You attempted to create a conditionally compiled block of code, but did not include the <strong>@end</strong> statement at the end. [!INCLUDE[javascript](../../javascript/includes/javascript-md.md)] statements can be conditionally compiled by enclosing them within an <strong>@if/@end</strong> block.
24+
# Expected '\@end'
25+
You attempted to create a conditionally compiled block of code, but did not include the <strong>@end</strong> statement at the end. [!INCLUDE[javascript](../../javascript/includes/javascript-md.md)] statements can be conditionally compiled by enclosing them within an <strong>@if/@end</strong> block.
2626

2727
### To correct this error
2828

29-
- Add the corresponding <strong>@end</strong> statement.
29+
- Add the corresponding <strong>@end</strong> statement.
3030

3131
## See Also
3232
[Conditional Compilation](../../javascript/advanced/conditional-compilation-javascript.md)
33-
[Conditional Compilation Variables](../../javascript/advanced/conditional-compilation-variables-javascript.md)
33+
[Conditional Compilation Variables](../../javascript/advanced/conditional-compilation-variables-javascript.md)

scripting-docs/javascript/misc/expected-at.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;@&#39; | Microsoft Docs"
2+
title: "Expected '@' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;@&#39;
24+
# Expected '@'
2525
You attempted to create a variable to be used with conditional compilation statements using the `@set` statement, but did not place an at sign "**@**" before the variable name.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-catch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;catch&#39; | Microsoft Docs"
2+
title: "Expected 'catch' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;catch&#39;
24+
# Expected 'catch'
2525
You used the exception handling **try** block, but did not write the associated **catch** statement. The exception handling mechanism requires that the code that can fail, along with the code that should not execute if an exception occurs, be wrapped inside a **try** block. Exceptions are thrown from within the **try** block using the **throw** statement, and caught outside the **try** block with one or more **catch** statements.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-colon.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;:&#39; | Microsoft Docs"
2+
title: "Expected ':' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;:&#39;
24+
# Expected ':'
2525
You attempted to create an expression using the ternary conditional operator, but did not include the colon between the second and third operands. The ternary (three operands) conditional operator requires a colon between the second (true) and third (false) operands.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-equal-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;=&#39; (JavaScript) | Microsoft Docs"
2+
title: "Expected '=' (JavaScript) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;=&#39; (JavaScript)
24+
# Expected '=' (JavaScript)
2525
You attempted to create a variable to be used with conditional compilation statements, but did not place an equal sign between the variable and the value you want to assign to it.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-left-parenthesis-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;(&#39; (JavaScript) | Microsoft Docs"
2+
title: "Expected '(' (JavaScript) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;(&#39; (JavaScript)
24+
# Expected '(' (JavaScript)
2525
You attempted to enclose an expression within a set of parentheses, but did not include the opening parenthesis. Some expressions must be enclosed within a set of opening and closing parentheses. Notice the use of parentheses in the following example.
2626

2727
```JavaScript

scripting-docs/javascript/misc/expected-minus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;-&#39; | Microsoft Docs"
2+
title: "Expected '-' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;-&#39;
24+
# Expected '-'
2525
You attempted to create a regular expression literal, but did not include one of the slashes (/). Just as string literals are written as characters within a pair of quotation marks, regular expression literals are expressed as characters within a pair of slash (/) characters.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-right-parenthesis-in-regular-expression-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;)&#39; in regular expression (JavaScript) | Microsoft Docs"
2+
title: "Expected ')' in regular expression (JavaScript) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;)&#39; in regular expression (JavaScript)
24+
# Expected ')' in regular expression (JavaScript)
2525
You attempted to create a regular expression capture, assertion, or group, but did not include the closing parenthesis. Parentheses have several purposes in regular expressions. Primarily, they are used to capture sub-expressions, to specify assertions, or to group patterns together so that the items can be treated as a single unit by *, +, ?, and so on.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-right-parenthesis-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;)&#39; (JavaScript) | Microsoft Docs"
2+
title: "Expected ')' (JavaScript) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;)&#39; (JavaScript)
24+
# Expected ')' (JavaScript)
2525
You attempted to enclose an expression within a set of parentheses, but did not include the closing parenthesis. Some expression must be enclosed within a set of opening and closing parentheses. Notice the use of parentheses in the following example.
2626

2727
```JavaScript

scripting-docs/javascript/misc/expected-right-square-bracket-in-regular-expression-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;]&#39; in regular expression (JavaScript) | Microsoft Docs"
2+
title: "Expected ']' in regular expression (JavaScript) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;]&#39; in regular expression (JavaScript)
24+
# Expected ']' in regular expression (JavaScript)
2525
You attempted to create a character class for a regular expression match, but did not include the right bracket. Individual literal character combinations can be assembled into character classes by placing them within brackets. A character class matches any one character it contains. For example, /[abc]/ matches any one of the letters "a", "b", or "c".
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-right-square-bracket.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;]&#39; | Microsoft Docs"
2+
title: "Expected ']' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;]&#39;
24+
# Expected ']'
2525
You made a reference to an array element, but did not include the right bracket. Any expression that refers to an array element must include both opening and closing brackets.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-semicolon.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;;&#39; | Microsoft Docs"
2+
title: "Expected ';' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;;&#39;
24+
# Expected ';'
2525
You attempted to place more than one statement on a line, but did not separate them with semicolons. Semicolons are used to terminate statements. Although you can place several statements on a single line, each one must be delimited from the next with a semicolon.
2626

2727
### To correct this error

scripting-docs/javascript/misc/expected-var.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;var&#39; | Microsoft Docs"
2+
title: "Expected 'var' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;var&#39;
24+
# Expected 'var'
2525
Expected 'var' (ERRnoVar 1034))
2626

2727
You failed to add the keyword var when it was required.

scripting-docs/javascript/misc/expected-while.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Expected &#39;while&#39; | Microsoft Docs"
2+
title: "Expected 'while' | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Expected &#39;while&#39;
24+
# Expected 'while'
2525
You did not include the `while` condition in a `do...while` loop. A **do** statement must have a corresponding `while` test at the end of the code block.
2626

2727
### To correct this error

scripting-docs/javascript/misc/object-doesn-t-support-this-property-or-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Object doesn&#39;t support this property or method | Microsoft Docs"
2+
title: "Object doesn't support this property or method | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# Object doesn&#39;t support this property or method
24+
# Object doesn't support this property or method
2525
You specified a property or method that does not exist for this object. Not all objects support all properties and methods.
2626

2727
### To correct this error

scripting-docs/javascript/misc/return-statement-outside-of-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "&#39;return&#39; statement outside of function | Microsoft Docs"
2+
title: "'return' statement outside of function | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# &#39;return&#39; statement outside of function
24+
# 'return' statement outside of function
2525
You used a `return` statement in the global scope of your code. The `return` statement should only appear within the body of a function.
2626

2727
Invoking a function with the `()` operator is an expression. All expressions have values; the `return` statement is used to specify the value retuned by a function. The general form is:

scripting-docs/javascript/misc/with-not-available-in-the-ecma-327-compact-profile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "&#39;with&#39; not available in the ECMA 327 Compact Profile | Microsoft Docs"
2+
title: "'with' not available in the ECMA 327 Compact Profile | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "01/18/2017"
55
ms.prod: "windows-client-threshold"
@@ -21,7 +21,7 @@ author: "mikejo5000"
2121
ms.author: "mikejo"
2222
manager: "ghogen"
2323
---
24-
# &#39;with&#39; not available in the ECMA 327 Compact Profile
24+
# 'with' not available in the ECMA 327 Compact Profile
2525
'with' not available in the ECMA 327 Compact Profile (ErrWithNotInCP
2626

2727
You are not allowed to use the with keyword in the Compact Profile.

0 commit comments

Comments
 (0)