Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mciissee committed Nov 23, 2023
1 parent c66958b commit 4e95918
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ A collection of libraries for NestJS developers.

## Packages

| Package | Description | Version |
| ---------------------------------------- | ------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
| [`@cisstech/nest-expand`](./libs/expand) | A NestJS module to build Dynamic Resource Expansion for APIs | [![version](https://img.shields.io/npm/v/@golevelup/nestjs-common.svg)](https://www.npmjs.com/package/@cisstech/nest-expand) |
| Package | Description | Version |
| ------------------------------------------ | ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------- |
| [`@cisstech/nestjs-expand`](./libs/expand) | A NestJS module to build Dynamic Resource Expansion for APIs | [![version](https://img.shields.io/npm/v/@cisstech/nestjs-expand.svg)](https://www.npmjs.com/package/@cisstech/nestjs-expand) |

## 📄 Docs

Expand Down
14 changes: 7 additions & 7 deletions libs/expand/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @cisstech/nest-expand
# @cisstech/nestjs-expand

<div align="center">

Expand All @@ -8,8 +8,8 @@ A NestJS module to build Dynamic Resource Expansion for APIs
[![codecov](https://codecov.io/gh/cisstech/nestkit/branch/main/graph/badge.svg)](https://codecov.io/gh/cisstech/nestkit)
[![codefactor](https://www.codefactor.io/repository/github/cisstech/nestkit/badge/main)](https://www.codefactor.io/repository/github/cisstech/nestkit/overview/main)
[![GitHub Tag](https://img.shields.io/github/tag/cisstech/nestkit.svg)](https://github.com/cisstech/nestkit/tags)
[![npm package](https://img.shields.io/npm/v/@cisstech/nest-expand.svg)](https://www.npmjs.org/package/@cisstech/nestkit)
[![NPM downloads](http://img.shields.io/npm/dm/@cisstech/nest-expand.svg)](https://npmjs.org/package/@cisstech/nest-expand)
[![npm package](https://img.shields.io/npm/v/@cisstech/nestjs-expand.svg)](https://www.npmjs.org/package/@cisstech/nestkit)
[![NPM downloads](http://img.shields.io/npm/dm/@cisstech/nestjs-expand.svg)](https://npmjs.org/package/@cisstech/nestjs-expand)
[![licence](https://img.shields.io/github/license/cisstech/nestkit)](https://github.com/cisstech/nestkit/blob/main/LICENSE)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)

Expand Down Expand Up @@ -41,7 +41,7 @@ npm install nestjs-expandable
```typescript
// user.controller.ts
import { Controller, Get, NotFoundException } from '@nestjs/common'
import { Expandable } from '@cisstech/nest-expand'
import { Expandable } from '@cisstech/nestjs-expand'
import { UserDTO } from './user.dto'
import { UserService } from './user.service'

Expand All @@ -66,7 +66,7 @@ npm install nestjs-expandable
```typescript
// user.expander.ts
import { Injectable, NotFoundException } from '@nestjs/common'
import { ExpandContext, Expander, Expandable } from '@cisstech/nest-expand'
import { ExpandContext, Expander, Expandable } from '@cisstech/nestjs-expand'
import { UserDTO } from './user.dto'
import { CustomerService } from './user.service'

Expand All @@ -92,7 +92,7 @@ npm install nestjs-expandable
// app.module.ts

import { Module } from '@nestjs/common'
import { NestKitExpandModule } from '@cisstech/nest-expand'
import { NestKitExpandModule } from '@cisstech/nestjs-expand'
import { UserExpander } from 'PATH_TO_FILE'
import { UserController } from 'PATH_TO_FILE'

Expand All @@ -112,7 +112,7 @@ The library provides configuration options to customize its behavior. You can pa
// app.module.ts

import { Module } from '@nestjs/common'
import { NestKitExpandModule } from '@cisstech/nest-expand'
import { NestKitExpandModule } from '@cisstech/nestjs-expand'
import { UserExpander } from 'PATH_TO_FILE'
import { UserController } from 'PATH_TO_FILE'

Expand Down

0 comments on commit 4e95918

Please sign in to comment.