Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tools and contrib spelling mistakes
authorAugustin Degomme <adegomme@users.noreply.github.com>
Fri, 12 Jun 2020 10:43:00 +0000 (12:43 +0200)
committerAugustin Degomme <adegomme@users.noreply.github.com>
Fri, 12 Jun 2020 10:43:00 +0000 (12:43 +0200)
CMakeLists.txt
contrib/benchmarking_code_block/Rdhist.R
tools/cmake/DefinePackages.cmake
tools/cmake/Flags.cmake
tools/git-hooks/clang-format.pre-commit
tools/internal/eclipse-formating.xml
tools/simgrid_convert_TI_traces.py
tools/tesh/IO-bigsize.tesh
tools/tesh/set-output-sort.tesh
tools/tesh/tesh.py

index 4b48876..503c71b 100644 (file)
@@ -179,7 +179,7 @@ if(WIN32)
   unset(CMAKE_INCLUDE_WIN)
 endif()
 
-# library dependency cannot start with a space (CMP0004), so initialize it with something that is never desactivated.
+# library dependency cannot start with a space (CMP0004), so initialize it with something that is never deactivated.
 set(SIMGRID_DEP "-lm") 
 
 ### Determine the assembly flavor that we need today
index ac5baa1..502a6f8 100644 (file)
@@ -176,7 +176,7 @@ create.base.plot <- function() {
 ##'
 ##' Used to add raw data or summary statistics to the plot of a distribution.
 ##' The height of Y is arbitrary, and can be set to optimize visualization.
-##' If SE estimates are available, tehse wil be plotted
+##' If SE estimates are available, these will be plotted
 ##' @name plot.data
 ##' @title Add data to plot
 ##' @param trait.data data to be plotted
index 8faa9a6..f97b443 100644 (file)
@@ -799,7 +799,7 @@ set(source_of_generated_headers
   src/internal_config.h.in
   include/smpi/mpif.h.in)
 
-### depend of some variables setted upper
+### depend of some variables set upper
 if(${HAVE_UCONTEXT_CONTEXTS}) #ucontext
   set(SIMIX_SRC    ${SIMIX_SRC} src/kernel/context/ContextUnix.hpp
                                 src/kernel/context/ContextUnix.cpp)
index 7b116d8..4cf2437 100644 (file)
@@ -198,7 +198,7 @@ endif()
 set(CMAKE_C_FLAGS   "${warnCFLAGS} ${CMAKE_C_FLAGS}   ${optCFLAGS}")
 set(CMAKE_CXX_FLAGS "${warnCXXFLAGS} ${CMAKE_CXX_FLAGS} ${optCFLAGS}")
 
-# Try to make Mac a bit more complient to open source standards
+# Try to make Mac a bit more compliant to open source standards
 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE")
 endif()
index c3e404b..ccaa385 100755 (executable)
@@ -198,7 +198,7 @@ printf "\nThe following differences were found between the code to commit "
 printf "and the clang-format rules:\n\n"
 cat "${patch}"
 
-printf "\nYou can apply these changes and readd the files with:\n"
+printf "\nYou can apply these changes and read the files with:\n"
 printf "  git apply ${patch} &&  git apply --cached ${patch}\n"
 printf "(call this command from the root directory of your repository)\n"
 printf "\n\n\n"
index 330a41c..7ce4add 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
-<!-- This file is an eclipse configuration file, to setup the code formater.
+<!-- This file is an eclipse configuration file, to setup the code formatter.
      Open the properties of your SimGrid project, "C/C++ General" -> "Formatter"
      Then, enable project-specific settings, and import this file. -->
 
index 995d328..d3425f8 100755 (executable)
@@ -10,7 +10,7 @@ IRecv call arbitrarily.
 This new that includes tags field that links MPI_wait calls to the
 MPI_ISend or MPI_IRecv associated to this wait.
 
-This script reproduce the old behavior of simgrid because informations are
+This script reproduce the old behavior of simgrid because information are
 missing to add the tags properly. It also lower case all the mpi calls.
 
 It takes in input (as argument or in stdin) the trace list file that is only a
index 926f53c..a6711cb 100644 (file)
@@ -1,9 +1,9 @@
 #!/usr/bin/env tesh
 # This suite contains two tests:
-#  The first one uses a very big input (150k) to check whether trucated input do work.
+#  The first one uses a very big input (150k) to check whether truncated input do work.
 #  The second one uses both a big input and a big output (150k each).
 #
-# This checks whether the non-blocking I/O mess is functionnal.
+# This checks whether the non-blocking I/O mess is functional.
 #
 
 p First, a write test
index cfff84a..e560f56 100644 (file)
@@ -71,7 +71,7 @@ p This tests whether TESH correctly sorts command output
 < > c
 < > d
 $ ${bindir:=.}/tesh --ignore-jenkins
-> Ignore all cruft seen on SimGrid's continous integration servers
+> Ignore all cruft seen on SimGrid's continuous integration servers
 > Test suite from stdin
 > [(stdin):1] Test sorting and filtering of output
 > [(stdin):3] true
index 3abc35a..4996630 100755 (executable)
@@ -531,7 +531,7 @@ if __name__ == '__main__':
     group1.add_argument(
         '--ignore-jenkins',
         action='store_true',
-        help='ignore all cruft generated on SimGrid continous integration servers')
+        help='ignore all cruft generated on SimGrid continuous integration servers')
     group1.add_argument('--wrapper', metavar='arg', help='Run each command in the provided wrapper (eg valgrind)')
     group1.add_argument(
         '--keep',
@@ -545,7 +545,7 @@ if __name__ == '__main__':
         os.chdir(options.cd)
 
     if options.ignore_jenkins:
-        print("Ignore all cruft seen on SimGrid's continous integration servers")
+        print("Ignore all cruft seen on SimGrid's continuous integration servers")
         # Note: regexps should match at the beginning of lines
         TeshState().ignore_regexps_common = [
             re.compile(r"profiling:"),