Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilletuzi committed Jan 31, 2024
1 parent 3d07bcc commit 00673ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Efficient client-side storage for Angular:

I am also the author of the [Angular Schematics extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=cyrilletuzi.angular-schematics), installed nearly 1 million times. Feel free to give it a try.

## Why this lib?
## Why this library?

Angular does not provide a client-side storage service, and almost every app needs some client-side storage. There are 2 native JavaScript APIs available:
- [localStorage](https://developer.mozilla.org/en-US/docs/Web/API/Storage/LocalStorage)
Expand Down
2 changes: 1 addition & 1 deletion lib/schematics/ng-update/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function updateToV13(): Rule {
const rxjsMajorVersion = getDependencyMajorVersion("rxjs", host);

if (!rxjsMajorVersion) {
context.logger.warn(`Not able to detect rxjs version. Be aware that rxjs version >= 7.4 is recommended for version 13 of this lib.`);
context.logger.warn(`Not able to detect rxjs version. Be aware that rxjs version >= 7.4 is recommended for version 13 of this library.`);
}

if (rxjsMajorVersion && (rxjsMajorVersion < 7)) {
Expand Down

0 comments on commit 00673ba

Please sign in to comment.