We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58be79c commit 8a479aaCopy full SHA for 8a479aa
CMakeLists.txt
@@ -440,8 +440,8 @@ endif()
440
441
# Generate docs for CppInterOp
442
option(CPPINTEROP_INCLUDE_DOCS "Generate build targets for the CppInterOp docs.")
443
-option(CPPINTEROP_ENABLE_DOXYGEN "Use doxygen to generate CppInterOp interal API documentation.")
444
-option(CPPINTEROP_ENABLE_SPHINX "Use sphinx to generage CppInterOp user documentation")
+option(CPPINTEROP_ENABLE_DOXYGEN "Use doxygen to generate CppInterOp internal API documentation.")
+option(CPPINTEROP_ENABLE_SPHINX "Use sphinx to generate CppInterOp user documentation")
445
446
447
if(MSVC)
CONTRIBUTING.md
@@ -42,7 +42,7 @@ projects such as CppInterOp. We have our documentation in the repository which i
42
rendered in the [CppInterOp.readthedocs](https://cppinterop.readthedocs.io/en/latest/) website.
43
Documentation modifications happen by proposing a pull request.
44
45
-## Creating a successfull pull request
+## Creating a successful pull request
46
47
To propose a code modification we use the pull requests. Pull requests which
48
review quickly and successfully share several common traits:
@@ -71,4 +71,4 @@ review quickly and successfully share several common traits:
71
### Developer Documentation
72
73
We have documented several useful hints that usually help when addressing issues
74
-as they come during developement time in our [developer documentation](https://cppinterop.readthedocs.io/en/latest/InstallationAndUsage.html).
+as they come during development time in our [developer documentation](https://cppinterop.readthedocs.io/en/latest/InstallationAndUsage.html).
cmake/modules/GoogleTest.cmake
@@ -76,7 +76,7 @@ else()
76
endif()
77
78
# Use gmock_main instead of gtest_main because it initializes gtest as well.
79
-# Note: The libraries are listed in reverse order of their dependancies.
+# Note: The libraries are listed in reverse order of their dependencies.
80
foreach(lib gtest gtest_main gmock gmock_main)
81
add_library(${lib} IMPORTED STATIC GLOBAL)
82
set_target_properties(${lib} PROPERTIES
docs/doxygen.cfg.in
@@ -70,7 +70,7 @@ CREATE_SUBDIRS = NO
70
# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
-# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak,
+# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
75
OUTPUT_LANGUAGE = English
@@ -1185,7 +1185,7 @@ EXT_LINKS_IN_WINDOW = NO
1185
1186
FORMULA_FONTSIZE = 10
1187
1188
-# Use the FORMULA_TRANPARENT tag to determine whether or not the images
+# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
1189
# generated for formulas are transparent PNGs. Transparent PNGs are not
1190
# supported properly for IE 6.0, but are supported on all modern browsers.
1191
#
docs/doxygen.css
@@ -313,7 +313,7 @@ HR { height: 1px;
313
314
/*
315
* LLVM Modifications.
316
- * Note: Everything above here is generated with "doxygen -w htlm" command. See
+ * Note: Everything above here is generated with "doxygen -w html" command. See
317
* "doxygen --help" for details. What follows are CSS overrides for LLVM
318
* specific formatting. We want to keep the above so it can be replaced with
319
* subsequent doxygen upgrades.
include/clang/Interpreter/CppInterOp.h
@@ -730,7 +730,7 @@ namespace Cpp {
730
///
731
///\param[in] candidates - vector of overloads that come under the
732
/// parent scope and have the same name
733
- ///\param[in] explicit_types - set of expicitly instantiated template types
+ ///\param[in] explicit_types - set of explicitly instantiated template types
734
///\param[in] arg_types - set of argument types
735
///\returns Instantiated function pointer
736
CPPINTEROP_API TCppFunction_t
@@ -791,7 +791,7 @@ namespace Cpp {
791
/// Append all Code completion suggestions to Results.
792
///\param[out] Results - CC suggestions for code fragment. Suggestions are
793
/// appended.
794
- ///\param[in] code - code fragmet to complete
+ ///\param[in] code - code fragment to complete
795
///\param[in] complete_line - position (line) in code for suggestion
796
///\param[in] complete_column - position (column) in code for suggestion
797
CPPINTEROP_API void CodeComplete(std::vector<std::string>& Results,
lib/Interpreter/Compatibility.h
@@ -481,7 +481,7 @@ inline std::string MakeResourceDir(llvm::StringRef Dir) {
481
return std::string(P.str());
482
}
483
484
-// Clang >= 16 (=16 with Value patch) change castAs to converTo
+// Clang >= 16 (=16 with Value patch) change castAs to convertTo
485
#ifdef CPPINTEROP_USE_CLING
486
template <typename T> inline T convertTo(cling::Value V) {
487
return V.castAs<T>();
lib/Interpreter/CppInterOp.cpp
@@ -1421,7 +1421,7 @@ namespace Cpp {
1421
// not C. That means BaseCXXRD derives from C. Offset needs to be
1422
// calculated for Derived class
1423
1424
- // Depth first Search is performed to the class that declears FD from
+ // Depth first Search is performed to the class that declares FD from
1425
// the base class
1426
std::vector<CXXRecordDecl*> stack;
1427
std::map<CXXRecordDecl*, CXXRecordDecl*> direction;
@@ -3646,7 +3646,7 @@ namespace Cpp {
3646
m_DupFD = dup(FD);
3647
3648
// Flush now or can drop the buffer when dup2 is called with Fd later.
3649
- // This seems only neccessary when piping stdout or stderr, but do it
+ // This seems only necessary when piping stdout or stderr, but do it
3650
// for ttys to avoid over complicated code for minimal benefit.
3651
::fflush(FD == STDOUT_FILENO ? stdout : stderr);
3652
if (dup2(fileno(m_TempFile.get()), FD) < 0)
lib/Interpreter/CppInterOpInterpreter.h
@@ -345,7 +345,7 @@ class Interpreter {
345
const_cast<const Interpreter*>(this)->getDynamicLibraryManager());
346
347
348
- ///\brief Adds multiple include paths separated by a delimter.
+ ///\brief Adds multiple include paths separated by a delimiter.
349
350
///\param[in] PathsStr - Path(s)
351
///\param[in] Delim - Delimiter to separate paths or NULL if a single path
lib/Interpreter/DynamicLibraryManager.cpp
@@ -51,11 +51,11 @@ namespace Cpp {
51
};
52
53
// Behaviour is to not add paths that don't exist...In an interpreted env
54
- // does this make sense? Path could pop into existance at any time.
+ // does this make sense? Path could pop into existence at any time.
55
for (const char* Var : kSysLibraryEnv) {
56
if (const char* Env = GetEnv(Var)) {
57
SmallVector<StringRef, 10> CurPaths;
58
- SplitPaths(Env, CurPaths, utils::kPruneNonExistant, Cpp::utils::platform::kEnvDelim);
+ SplitPaths(Env, CurPaths, utils::kPruneNonExistent, Cpp::utils::platform::kEnvDelim);
59
for (const auto& Path : CurPaths)
60
addSearchPath(Path);
61
@@ -86,7 +86,7 @@ namespace Cpp {
86
StringRef libLoader) {
87
88
// Handle substitutions (MacOS):
89
- // @rpath - This function does not substitute @rpath, becouse
+ // @rpath - This function does not substitute @rpath, because
90
// this variable is already handled by lookupLibrary where
91
// @rpath is replaced with all paths from RPATH one by one.
92
// @executable_path - Main program path.
0 commit comments