Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Found via `codespell -q 3 -L bu,eiter,fo,fpr,inout,numer,pixes,thisy`
  • Loading branch information
luzpaz authored and stweil committed Jul 8, 2023
1 parent 6363975 commit cf235cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ if(OPENMP_BUILD)
if(NOT OpenMP_FOUND
AND CLANG
AND WIN32)
# workaroung because find_package(OpenMP) does not work for clang-cl
# workaround because find_package(OpenMP) does not work for clang-cl
# https://gitlab.kitware.com/cmake/cmake/issues/19404
check_include_file_cxx(omp.h HAVE_OMP_H_INCLUDE)
find_library(OpenMP_LIBRARY NAMES omp libomp.lib)
Expand Down
2 changes: 1 addition & 1 deletion src/textord/edgblob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ int32_t OL_BUCKETS::outline_complexity(C_OUTLINE *outline, // parent outline
if (child_count + grandchild_count > max_count) { // too complex
if (edges_debug) {
tprintf(
"Disgard outline on child_count=%d + grandchild_count=%d "
"Discard outline on child_count=%d + grandchild_count=%d "
"> max_count=%d\n",
child_count, grandchild_count, max_count);
}
Expand Down

0 comments on commit cf235cc

Please sign in to comment.