Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/compiler/src/core/checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ export function createChecker(program: Program, resolver: NameResolver): Checker
const loadedType = stdTypes[name];
compilerAssert(
loadedType,
`TypeSpec std type "${name}" should have been initalized before using array syntax.`,
`TypeSpec std type "${name}" should have been initialized before using array syntax.`,
);
return loadedType as any;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/src/server/tspconfig/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ function resolveVariableInterpolationCompleteItems(
} else if (/{[^}]*$/.test(curText)) {
// parameters and built-in variables
const result = [
...getVariableCompletionItem(yamlDocNodes, "parameters", "Custom paramters variables"),
...getVariableCompletionItem(yamlDocNodes, "parameters", "Custom parameters variables"),
...["cwd", "project-root"].map((value) => {
const item: CompletionItem = {
label: value,
Expand Down
2 changes: 1 addition & 1 deletion packages/http-server-csharp/src/lib/scaffolding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ namespace ${mock.namespace}
public class ${mock.className} : ${mock.interfaceName}
{
/// <summary>
/// The controller constructor, using the dependency injection container to satisfy the paramters.
/// The controller constructor, using the dependency injection container to satisfy the parameters.
/// </summary>
/// <param name="initializer">The initializer class, registered with dependency injection</param>
/// <param name="accessor">The accessor for the HttpContext, allows your implementation to
Expand Down
2 changes: 1 addition & 1 deletion packages/http-server-js/src/util/differentiate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ function overlaps(range: IntegerRange, other: IntegerRange): boolean {
}

/**
* Optional paramters for model differentiation.
* Optional parameters for model differentiation.
*/
interface DifferentiateModelOptions {
/**
Expand Down
Loading