Skip to content

Commit

Permalink
index: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
srenatus committed Jul 16, 2024
1 parent 0bb9862 commit bc3bb3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
{ text: 'gui', link: '/gui' },
{ text: 'use samples', link: '/use-samples' },
{ text: 'mixing', link: '/mixing' },
{ text: 'adsr envlope', link: '/adsr' },
{ text: 'adsr envelope', link: '/adsr' },
{ text: 'use dsl', link: '/dsl' },
{ text: 'as web audio node', link: '/node' }
]
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ glicol.play({

The engine will analyse the difference and only update those nodes modified.

> This is the key for the what-you-see-if-what-you-get style. We have done the hard work on the engine so you don't have to manually manage all the nodes and connect them everywhere.
> This is the key for the what-you-see-is-what-you-get style. We have done the hard work on the engine so you don't have to manually manage all the nodes and connect them everywhere.
A lighter way to do it is to write:

Expand Down
2 changes: 1 addition & 1 deletion mixing.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Note how the `mix` use `..` as a syntax sugar. The example above is equivalant t
glicol.play({
"~t1": seq("60 60 60 60").sp("808bd").mul(0.5),
"~t2": seq("60 _ 67 _63").sp("guitar").lpf(1800, 1).mul(0.5),
o: mix("~t1 ~t2").plate(0.1),
o: mix("~t..").plate(0.1),
});
```

Expand Down
2 changes: 1 addition & 1 deletion use-samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ glicol.play({

However, a more usefull tool is the `seq` node.

The "seq" node takes unlimited number of parameters called "notes", seperated by spaces.
The "seq" node takes unlimited number of parameters called "notes", separated by spaces.

These "notes" will equally divide one bar music.

Expand Down

0 comments on commit bc3bb3b

Please sign in to comment.