-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos in the whole codebase #2217
Fix typos in the whole codebase #2217
Conversation
There's a merge conflict here. Rebase to the current master to fix it please. $ git rebase origin/master
# you're gonna git complaining about conflicts
$ git mergetool
# after you fix the merge conflicts
$ git rebase --continue |
Found via `codespell -q 3 -I ../pcl-whitelist.txt --skip="./surface/include/pcl/surface/3rdparty,./surface/src/3rdparty,./recognition/include/pcl/recognition/3rdparty"` Whitelist: ``` ang childs everytime iff indeces isnt ith lod metre metres mitre nd normaly ot resizeable te vertexes ```
3d35a93
to
b9916c3
Compare
done. |
simulation/src/range_likelihood.cpp
Outdated
@@ -539,7 +539,7 @@ costFunction4(float ref_val,float depth_val) | |||
float proportion = 0.999f; | |||
float lhood = proportion + (1-proportion)*(top/bottom); | |||
|
|||
// safety fix thats seems to be required due to opengl ayschronizate | |||
// safety fix that seems to be required due to opengl asyschronizate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please check these fixes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Darn, i left a typo in asyschronizate. But actually after more research (not sure I why I didn't do this the first time) I think the word should actually be asynchronization
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can someone respond to this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm no native speaker, but Wiktionary has such a word.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to change this? Then we can merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
More importantly, who is Hordur? 😆 My guess would also go with asynchronization.
@@ -277,7 +277,7 @@ pcl::Morphology<PointT>::subtractionBinary ( | |||
const pcl::PointCloud<PointT> &input1, | |||
const pcl::PointCloud<PointT> &input2) | |||
{ | |||
const int height = (input1.height < input2.hieght) ? input1.height : input2.height; | |||
const int height = (input1.height < input2.height) ? input1.height : input2.height; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please review
@@ -299,7 +299,7 @@ pcl::Morphology<PointT>::unionBinary ( | |||
const pcl::PointCloud<PointT> &input1, | |||
const pcl::PointCloud<PointT> &input2) | |||
{ | |||
const int height = (input1.height < input2.hieght) ? input1.height : input2.height; | |||
const int height = (input1.height < input2.height) ? input1.height : input2.height; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please review
Can we add a commit fixing #2228 ? |
d23c294
to
c056003
Compare
Found via
codespell -q 3 -I ../pcl-whitelist.txt --skip="./surface/include/pcl/surface/3rdparty,./surface/src/3rdparty,./recognition/include/pcl/recognition/3rdparty"
Maintainer edit: fixes #2228