Skip to content

Commit e518c6b

Browse files
authored
unhyphenate run-time (#50358)
1 parent 3f7e1fb commit e518c6b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/core/testing/mstest-analyzers/mstest0050.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ Ensure that global test fixture methods follow the required layout.
4040

4141
## When to suppress warnings
4242

43-
Don't suppress warnings from this rule. Invalid global test fixture methods will not execute at run-time.
43+
Don't suppress warnings from this rule. Invalid global test fixture methods will not execute at runtime.

docs/framework/windows-workflow-foundation/samples/non-generic-foreach.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class ForEach : NativeActivity
4040
The <xref:System.Activities.ActivityAction> of type <xref:System.Object>, which is executed for each element in the collection. Each individual element is passed into the Body through its `Argument` property.
4141

4242
Values (optional)
43-
The collection of elements that are iterated over. Ensuring that all elements of the collection are of compatible types is done at run-time.
43+
The collection of elements that are iterated over. Ensuring that all elements of the collection are of compatible types is done at runtime.
4444

4545
## Example of Using ForEach
4646

docs/framework/windows-workflow-foundation/samples/non-generic-parallelforeach.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Body (optional)\
4545
The <xref:System.Activities.ActivityAction> of type <xref:System.Object>, which is executed for each element in the collection. Each individual element is passed into the Body through its Argument property.
4646

4747
Values (optional)\
48-
The collection of elements that are iterated over. Ensuring that all elements of the collection are of compatible types is done at run-time.
48+
The collection of elements that are iterated over. Ensuring that all elements of the collection are of compatible types is done at runtime.
4949

5050
CompletionCondition (optional)\
5151
The <xref:System.Activities.Statements.ParallelForEach%601.CompletionCondition%2A> property is evaluated after any iteration completes. If it evaluates to `true`, then the scheduled pending iterations are canceled. If this property is not set, all activities in the Branches collection execute until completion.

docs/fsharp/language-reference/literals.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ The following table shows the literal types in F#. Characters that represent dig
3939

4040
Values that are intended to be constants can be marked with the [Literal](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-core-literalattribute.html) attribute.
4141

42-
This attribute has the effect of causing a value to be compiled as a constant. In the following example, both `x` and `y` below are immutable values, but `x` is evaluated at run-time, whereas `y` is a compile-time constant.
42+
This attribute has the effect of causing a value to be compiled as a constant. In the following example, both `x` and `y` below are immutable values, but `x` is evaluated at runtime, whereas `y` is a compile-time constant.
4343

4444
```fsharp
45-
let x = "a" + "b" // evaluated at run-time
45+
let x = "a" + "b" // evaluated at runtime
4646
4747
[<Literal>]
4848
let y = "a" + "b" // evaluated at compile-time

docs/standard/commandline/how-to-enable-tab-completion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Once the user's shell is set up and the executable is registered, completions wi
4444

4545
For *cmd.exe* on Windows (the Windows Command Prompt) there is no pluggable tab completion mechanism, so no shim script is available. For other shells, [look for a GitHub issue that is labeled `Area-Completions`](https://github.com/dotnet/command-line-api/issues?q=is%3Aissue+is%3Aopen+label%3A%22Area-Completions%22). If you don't find an issue, you can [open a new one](https://github.com/dotnet/command-line-api/issues).
4646

47-
## Get tab completion values at run-time
47+
## Get tab completion values at runtime
4848

4949
The following code shows an app that retrieves values for tab completion dynamically at runtime. The code gets a list of the next two weeks of dates following the current date. The list is provided to the `--date` option by calling `CompletionSources.Add`:
5050

0 commit comments

Comments
 (0)