Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Feb 8, 2025
1 parent c770a64 commit 3e291eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ A release can be performed by calling the script "release.sh". This script is as

Before you start the release process verify if the general build of open-bpmn is successful:

$ ./devi.sh build
$ ./devi.sh install
$ ./devi build
$ ./devi install

Check current release status on npm:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,10 @@ export class BPMNElementSnapper implements ISnapper {
snap(position: Point, element: GModelElement): Point {
// default move 1x1...
return {
// x: Math.round(position.x),
// y: Math.round(position.y)
// maybe the better snap behaviour...
// maybe the better snap behavior instead of round()...
x: Math.floor(position.x),
y: Math.floor(position.y)
};


}
}

Expand Down

0 comments on commit 3e291eb

Please sign in to comment.