Skip to content

Commit

Permalink
Fix Fractal Cube sample name
Browse files Browse the repository at this point in the history
  • Loading branch information
akd-io authored and austinEng committed Apr 7, 2023
1 parent fd1ccb2 commit ae7cdc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sample/fractalCube/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ const init: SampleInit = async ({ canvas, pageState }) => {
requestAnimationFrame(frame);
};

const TexturedCube: () => JSX.Element = () =>
const FractalCube: () => JSX.Element = () =>
makeSample({
name: 'Textured Cube',
name: 'Fractal Cube',
description:
"This example uses the previous frame's rendering result \
as the source texture for the next frame.",
Expand Down Expand Up @@ -259,4 +259,4 @@ const TexturedCube: () => JSX.Element = () =>
filename: __filename,
});

export default TexturedCube;
export default FractalCube;

0 comments on commit ae7cdc0

Please sign in to comment.