Skip to content

Commit

Permalink
[dox] typos [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Jan 21, 2021
1 parent 5c768a7 commit e29593d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/dox/dev/Basic-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ tile.norm() / tile.range().volume() < TA::SparseShape::threshold()
```
To set the zero-tile threshold call:
```.cpp
TA::SparseShape::threshold(my_theshold);
TA::SparseShape::threshold(my_threshold);
```
where `my_theshold` is the zero threshold you specify for your application. This threshold is a global value and is used for all `SparseShape` objects. Because the zero-tile threshold is shared by all shapes, it is recommended that you set this value only once at the beginning of your program. If you change the threshold during the execution of your application, it affect all subsequent zero-tile checks but it will not change shape data. You are responsible for ensuring that changes the the threshold value during execution do not adversely affect your application.
where `my_threshold` is the zero threshold you specify for your application. This threshold is a global value and is used for all `SparseShape` objects. Because the zero-tile threshold is shared by all shapes, it is recommended that you set this value only once at the beginning of your program. If you change the threshold during the execution of your application, it affect all subsequent zero-tile checks but it will not change shape data. You are responsible for ensuring that changes the the threshold value during execution do not adversely affect your application.
#### Distributed SparseShape Construction
Expand Down

0 comments on commit e29593d

Please sign in to comment.