From fcd68e9d780b3afdf133d46f94c854e61d9e8bff Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 7 May 2024 15:40:06 +0200 Subject: Fix typo in velocity --- components/velocity/index.js | 2 +- components/velocity/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'components') diff --git a/components/velocity/index.js b/components/velocity/index.js index 2becf51..9d45721 100644 --- a/components/velocity/index.js +++ b/components/velocity/index.js @@ -7,7 +7,7 @@ import { Component } from '@serpentity/serpentity'; * -y // the y component of velocity vector * -z // the z component of velocity vector */ -module export class Velocity extends Component { +export class Velocity extends Component { constructor(config) { super(config) diff --git a/components/velocity/package.json b/components/velocity/package.json index c4dc67e..8ca3916 100644 --- a/components/velocity/package.json +++ b/components/velocity/package.json @@ -1,6 +1,6 @@ { "name": "@serpentity/components.velocity", - "version": "4.0.1", + "version": "4.0.2", "description": "Velocity component for serpentity", "main": "index.js", "author": "Rubén Beltrán del Río ", -- cgit