Skip to content

Commit c1b4417

Browse files
committed
Revert misc/ and docbook changes
1 parent 832aa0e commit c1b4417

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

doc/docbook/resources/other/docbook5xi.rnc

+2-2
Original file line numberDiff line numberDiff line change
@@ -5591,7 +5591,7 @@ div {
55915591
}
55925592
db.relation.attribute =
55935593

5594-
## Identifies the relationship between the bibliographic elements
5594+
## Identifies the relationship between the bibliographic elemnts
55955595
attribute relation { text }
55965596
div {
55975597
db.biblioentry.role.attribute = attribute role { text }
@@ -6623,7 +6623,7 @@ db.char.attribute =
66236623
attribute char { text }
66246624
db.charoff.attribute =
66256625

6626-
## Specifies the percentage of the column's total width that should appear to the left of the first occurrence of the character identified in char
6626+
## Specifies the percentage of the column's total width that should appear to the left of the first occurance of the character identified in char
66276627
## when align
66286628
## is set to char
66296629
## .

misc/CMake/BRLCAD_Targets.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ endfunction(ADD_MAN_PAGES)
815815
# is defined but no other connections are made between that target
816816
# and the agglomeration targets.
817817
#
818-
# 5. If a TIMEOUT argument is passed, a specific timeout time is set
818+
# 5. If a TIMEOUT argument is passed, a specific timeout tiem is set
819819
# on the test. Otherwise, a default is assigned to ensure no test
820820
# runs indefinitely.
821821

misc/CMake/FindOpenGL.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The value may be one of:
122122
123123
.. versionchanged:: 3.11
124124
This is the default, unless policy :policy:`CMP0072` is set to ``OLD``
125-
and no components are requested (since components
125+
and no components are requeted (since components
126126
correspond to GLVND libraries).
127127
128128
``LEGACY``

misc/CMake/NSIS.template.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ Section "Uninstall"
904904
@CPACK_NSIS_DELETE_ICONS@
905905
@CPACK_NSIS_DELETE_ICONS_EXTRA@
906906

907-
;Delete empty start menu parent directories
907+
;Delete empty start menu parent diretories
908908
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
909909

910910
startMenuDeleteLoop:
@@ -923,7 +923,7 @@ Section "Uninstall"
923923
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
924924
@CPACK_NSIS_DELETE_ICONS_EXTRA@
925925

926-
;Delete empty start menu parent directories
926+
;Delete empty start menu parent diretories
927927
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
928928

929929
secondStartMenuDeleteLoop:

misc/CMake/NSIS_silent.template.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ Section "Uninstall"
915915
@CPACK_NSIS_DELETE_ICONS@
916916
@CPACK_NSIS_DELETE_ICONS_EXTRA@
917917

918-
;Delete empty start menu parent directories
918+
;Delete empty start menu parent diretories
919919
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
920920

921921
startMenuDeleteLoop:
@@ -934,7 +934,7 @@ Section "Uninstall"
934934
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
935935
@CPACK_NSIS_DELETE_ICONS_EXTRA@
936936

937-
;Delete empty start menu parent directories
937+
;Delete empty start menu parent diretories
938938
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
939939

940940
secondStartMenuDeleteLoop:

misc/CMake/distcheck_repo_verify.cmake.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ message(" --- Building list of files known to the build system: Done")
163163
# Get the CPack ignore build path value from the parent CMake build
164164
set(CPACK_IGNORE_BUILD_PATH "@CPACK_IGNORE_BUILD_PATH@")
165165

166-
# Determine what files are actually present on the file system at the
166+
# Determing what files are actually present on the file system at the
167167
# time this is executed (as opposed to what the build system or
168168
# Subversion *expect* to be present) minus files that CPack knows to
169169
# ignore (i.e., things that will not be included in a source archive.)

misc/flawfinder

+4-4
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ class SarifLogger(object):
305305
# --- OLDFILENAME OLDTIMESTAMP
306306
# +++ NEWFILENAME NEWTIMESTAMP
307307
# @@ -OLDSTART,OLDLENGTH +NEWSTART,NEWLENGTH @@
308-
# ... Changes where preceding "+" is add, "-" is remove, " " is unchanged.
308+
# ... Changes where preceeding "+" is add, "-" is remove, " " is unchanged.
309309
#
310310
# ",OLDLENGTH" and ",NEWLENGTH" are optional (they default to 1).
311311
# GNU unified diff format doesn't normally output "Index:"; you use
@@ -770,7 +770,7 @@ def extract_c_parameters(text, pos=0):
770770
# so will get confused by patterns like gettext("hi") + function("bye")
771771
# In practice, this doesn't seem to be a problem; gettext() is usually
772772
# wrapped around the entire parameter.
773-
# The ?s makes it possible to match multi-line strings.
773+
# The ?s makes it posible to match multi-line strings.
774774
gettext_pattern = re.compile(r'(?s)^\s*' 'gettext' r'\s*\((.*)\)\s*$')
775775
undersc_pattern = re.compile(r'(?s)^\s*' '_(T(EXT)?)?' r'\s*\((.*)\)\s*$')
776776

@@ -1026,7 +1026,7 @@ def c_static_array(hit):
10261026

10271027
def cpp_unsafe_stl(hit):
10281028
# Use one of the overloaded classes from the STL in C++14 and higher
1029-
# instead of the <C++14 versions of these functions that did not
1029+
# instead of the <C++14 versions of theses functions that did not
10301030
# if the second iterator could overflow
10311031
if len(hit.parameters) <= 4:
10321032
add_warning(hit)
@@ -1136,7 +1136,7 @@ c_ruleset = {
11361136
"lstrcpyn|wcsncpy|_tcsncpy|_mbsnbcpy":
11371137
(c_buffer,
11381138
1, # Low risk level, because this is often used correctly when FIXING security
1139-
# problems, and raising it to a higher risk level would cause many false
1139+
# problems, and raising it to a higher risk levle would cause many false
11401140
# positives.
11411141
"Easily used incorrectly; doesn't always \\0-terminate or "
11421142
"check for invalid pointers [MS-banned] (CWE-120)",

misc/hawaii_islands.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# used to make a .g file of the Hawaii islands chain from the
77
# University of Washington's Geomorphological Research Group terrain
88
# data files. Illustrates warping and downsampling with gdalwarp and
9-
# concatenating multiple terrain data sets into a single .g file.
9+
# concating multiple terrain data sets into a single .g file.
1010
#
1111
# Data from http://gis.ess.washington.edu/data/raster/tenmeter/hawaii/index.html
1212

misc/opencl-raytracer-tests/version1/other/OpenCL/cl.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ static inline cl_int errHandler (cl_int err, const char * errStr = NULL)
11541154
} // namespace detail
11551155
//! \endcond
11561156

1157-
/*! \struct ImageFormat
1157+
/*! \stuct ImageFormat
11581158
* \brief ImageFormat interface fro cl_image_format.
11591159
*/
11601160
struct ImageFormat : public cl_image_format

misc/osl_shaders/emitter.osl

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ emitter
4040
)
4141
{
4242
// Because emission() returns a radiance that, integrated over all
43-
// angles, yields a power density of 1, we multiply by the desired
43+
// angles, yields a power density of 1, we multipy by the desired
4444
// total power and divide by the total surface area. In this
4545
// manner, the 'power' parameter gives the total power of the light
4646
// (e.g., in Watts) independently of its physical size or shape

0 commit comments

Comments
 (0)