Skip to content

Commit cf235cc

Browse files
luzpazstweil
authored andcommitted
Fix typos
Found via `codespell -q 3 -L bu,eiter,fo,fpr,inout,numer,pixes,thisy`
1 parent 6363975 commit cf235cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ if(OPENMP_BUILD)
324324
if(NOT OpenMP_FOUND
325325
AND CLANG
326326
AND WIN32)
327-
# workaroung because find_package(OpenMP) does not work for clang-cl
327+
# workaround because find_package(OpenMP) does not work for clang-cl
328328
# https://gitlab.kitware.com/cmake/cmake/issues/19404
329329
check_include_file_cxx(omp.h HAVE_OMP_H_INCLUDE)
330330
find_library(OpenMP_LIBRARY NAMES omp libomp.lib)

src/textord/edgblob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int32_t OL_BUCKETS::outline_complexity(C_OUTLINE *outline, // parent outline
174174
if (child_count + grandchild_count > max_count) { // too complex
175175
if (edges_debug) {
176176
tprintf(
177-
"Disgard outline on child_count=%d + grandchild_count=%d "
177+
"Discard outline on child_count=%d + grandchild_count=%d "
178178
"> max_count=%d\n",
179179
child_count, grandchild_count, max_count);
180180
}

0 commit comments

Comments
 (0)