Skip to content

Commit

Permalink
doc: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tmokmss committed Apr 26, 2024
1 parent 74e3e37 commit 0c3c82e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ To mitigate this issue, you can separate the stack for frontend construct from o
You can build a container image at deploy time by the following code:

```ts
import { ContainerImageBuild } from 'deploy-time-build;
import { ContainerImageBuild } from 'deploy-time-build';

const image = new ContainerImageBuild(this, 'Build', {
directory: 'example-image',
Expand Down Expand Up @@ -156,7 +156,7 @@ The third argument (props) are the super set of DockerImageAsset's properties. Y
The following code is an example to use the construct:

```ts
import { SociIndexBuild } from 'deploy-time-build;
import { SociIndexBuild } from 'deploy-time-build';

const asset = new DockerImageAsset(this, 'Image', { directory: 'example-image' });
new SociIndexBuild(this, 'Index', { imageTag: asset.assetHash, repository: asset.repository });
Expand Down

0 comments on commit 0c3c82e

Please sign in to comment.