Skip to content

Commit 8653064

Browse files
committed
Various cleaning
* Malformed title in README * Wrong space character in test dataset * Wrong coding style
1 parent 98f88b1 commit 8653064

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Run the following commands from the root of the sources tree.
3838

3939
### Build
4040

41-
Thi command will install dependencies and build the module
41+
This command will install dependencies and build the module
4242
```
4343
npm install
4444
```
@@ -52,7 +52,7 @@ npm test
5252
```
5353

5454

55-
### Packaging
55+
### Packaging
5656

5757
This command will create a .tgz archive
5858
```

src/OpenFLUIDjsWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ void OpenFLUIDjs_RunSimulation(const Napi::CallbackInfo& info)
256256
// =====================================================================
257257

258258

259-
Napi::Object Init(Napi::Env env, Napi::Object exports) {
259+
Napi::Object Init(Napi::Env env, Napi::Object exports)
260+
{
260261

261262
openfluid::utils::Binding::init();
262263

@@ -272,7 +273,6 @@ Napi::Object Init(Napi::Env env, Napi::Object exports) {
272273
exports.Set(Napi::String::New(env, "runSimulation"),Napi::Function::New(env,OpenFLUIDjs_RunSimulation));
273274

274275
return exports;
275-
276276
}
277277

278278

tests/Generators.PRJ/IN/checkgenerators.fluidx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<param name="distribution" value="distri.dat" />
1818
</generator>
1919

20-
<generator varname="tests.interpmin" unitclass="TestUnits" method="interp">
20+
<generator varname="tests.interpmin" unitclass="TestUnits" method="interp">
2121
<param name="sources" value="sourcesinterp.xml" />
2222
<param name="distribution" value="distri.dat" />
2323
<param name="thresholdmin" value="0" />

0 commit comments

Comments
 (0)