Skip to content

Commit

Permalink
small doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrodnek authored and floodfx committed Jun 15, 2023
1 parent 0508ffa commit 52633f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/liveviewjs.com/docs/11-js-commands/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ server round trip. These functions are:
JS Commands are used in the `render` function of a LiveView or LiveComponent:

```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand All @@ -46,7 +46,7 @@ JS Commands are "chainable" (i.e., fluent) so you can chain multiple commands t
executed in the order they are called:

```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand Down
4 changes: 2 additions & 2 deletions old_docs/file-uploads.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LiveViewJS enables developers to create great user experiences including file up
### JS Command Syntax
JS Commands are used in the `render` function of a LiveView or LiveComponent:
```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand All @@ -34,7 +34,7 @@ render() {
### "Chainable" (i.e. fluent) Syntax
JS Commands are "chainable" (i.e. fluent) so you can chain multiple commands together as needed and they will be executed in the order they are called:
```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand Down
4 changes: 2 additions & 2 deletions old_docs/js-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ JS Commands support a number of client-side DOM manipulation function that can b
### JS Command Syntax
JS Commands are used in the `render` function of a LiveView or LiveComponent:
```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand All @@ -34,7 +34,7 @@ render() {
### "Chainable" (i.e. fluent) Syntax
JS Commands are "chainable" (i.e. fluent) so you can chain multiple commands together as needed and they will be executed in the order they are called:
```typescript
import { JS } from 'lieviewjs';
import { JS } from 'liveviewjs';

//... render function of a LiveView
render() {
Expand Down

0 comments on commit 52633f3

Please sign in to comment.