Michele Caini 7 年 前
コミット
f763c8a777
5 ファイル変更5 行追加5 行削除
  1. 1 1
      CMakeLists.txt
  2. 0 0
      CONTRIBUTING
  3. 1 1
      README.md
  4. 1 1
      src/entt/process/scheduler.hpp
  5. 2 2
      src/entt/signal/emitter.hpp

+ 1 - 1
CMakeLists.txt

@@ -120,7 +120,7 @@ add_custom_target(
     SOURCES
         appveyor.yml
         AUTHORS
-        CONTRIBUTING.md
+        CONTRIBUTING
         LICENSE
         README.md
         TODO

+ 0 - 0
CONTRIBUTING.md → CONTRIBUTING


+ 1 - 1
README.md

@@ -2589,7 +2589,7 @@ open an issue or a PR and I'll be glad to add them to the list.
 # Contributors
 
 If you want to participate, please see the guidelines for
-[contributing](https://github.com/skypjack/entt/blob/master/CONTRIBUTING.md)
+[contributing](https://github.com/skypjack/entt/blob/master/CONTRIBUTING)
 before to create issues or pull requests.<br/>
 Take also a look at the
 [contributors list](https://github.com/skypjack/entt/blob/master/AUTHORS) to

+ 1 - 1
src/entt/process/scheduler.hpp

@@ -140,7 +140,7 @@ public:
 
     /*! @brief Copying a scheduler isn't allowed. @return This scheduler. */
     Scheduler & operator=(const Scheduler &) = delete;
-    /*! @brief Default move assignament operator. @return This scheduler. */
+    /*! @brief Default move assignment operator. @return This scheduler. */
     Scheduler & operator=(Scheduler &&) = default;
 
     /**

+ 2 - 2
src/entt/signal/emitter.hpp

@@ -174,7 +174,7 @@ public:
         Connection(Connection &&) = default;
 
         /**
-         * @brief Default copy assignament operator.
+         * @brief Default copy assignment operator.
          * @return This connection.
          */
         Connection & operator=(const Connection &) = default;
@@ -201,7 +201,7 @@ public:
 
     /*! @brief Copying an emitter isn't allowed. @return This emitter. */
     Emitter & operator=(const Emitter &) = delete;
-    /*! @brief Default move assignament operator. @return This emitter. */
+    /*! @brief Default move assignment operator. @return This emitter. */
     Emitter & operator=(Emitter &&) = default;
 
     /**