Skip to content

Commit

Permalink
fix: updating osml_endpoint_container.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
drduhe committed Nov 8, 2023
1 parent 750645e commit 8138d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/osml/model_endpoints/osml_endpoint_container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface OSMLEndpointContainerProps {
* Represents a construct responsible for deploying an ECR container image
* for the model to be used with the model runner.
*/
export class OMSLEndpointContainer extends Construct {
export class OSMLEndpointContainer extends Construct {
/**
* Configuration for the OSMLEndpointContainer.
*/
Expand All @@ -69,7 +69,7 @@ export class OMSLEndpointContainer extends Construct {
* @param {Construct} scope - The scope/stack in which to define this construct.
* @param {string} id - The id of this construct within the current scope.
* @param {OSMLEndpointContainerProps} props - The properties of this construct.
* @returns OMSLEndpointContainer - The OMSLEndpointContainer instance.
* @returns OSMLEndpointContainer - The OMSLEndpointContainer instance.
*/
constructor(scope: Construct, id: string, props: OSMLEndpointContainerProps) {
super(scope, id);
Expand Down

0 comments on commit 8138d45

Please sign in to comment.