common: Fix typo
authorJi2z <leegin98@naver.com>
Fri, 22 Oct 2021 03:27:31 +0000 (12:27 +0900)
committerHermet Park <chuneon.park@samsung.com>
Tue, 26 Oct 2021 03:55:39 +0000 (12:55 +0900)
Fix typo backeneds to backends

Change-Id: Idd13c3972ba2fa0fddc2a1eb706c55a9ea46674f

inc/thorvg.h
src/bindings/capi/thorvg_capi.h

index 69bd051..f0b9666 100644 (file)
@@ -1356,7 +1356,7 @@ public:
      * You can indicate the number of threads, the count of which is designated @p threads.
      * In the initialization step, TVG will generate/spawn the threads as set by @p threads count.
      *
-     * @param[in] engine The engine types to initialize. This is relative to the Canvas types, in which it will be used. For multiple backeneds bitwise operation is allowed.
+     * @param[in] engine The engine types to initialize. This is relative to the Canvas types, in which it will be used. For multiple backends bitwise operation is allowed.
      * @param[in] threads The number of additional threads. Zero indicates only the main thread is to be used.
      *
      * @retval Result::Success When succeed.
@@ -1373,7 +1373,7 @@ public:
     /**
      * @brief Terminates TVG engines.
      *
-     * @param[in] engine The engine types to terminate. This is relative to the Canvas types, in which it will be used. For multiple backeneds bitwise operation is allowed
+     * @param[in] engine The engine types to terminate. This is relative to the Canvas types, in which it will be used. For multiple backends bitwise operation is allowed
      *
      * @retval Result::Success When succeed.
      * @retval Result::InsufficientCondition In case there is nothing to be terminated.
index a7b8e7b..3e65a12 100644 (file)
@@ -76,7 +76,7 @@ typedef struct _Tvg_Saver Tvg_Saver;
 
 
 /**
-* \brief Enumeration specifying the engine type used for the graphics backend. For multiple backeneds bitwise operation is allowed.
+* \brief Enumeration specifying the engine type used for the graphics backend. For multiple backends bitwise operation is allowed.
 *
 * \ingroup ThorVGCapi_Initializer
 */
@@ -239,7 +239,7 @@ typedef struct
 * tvg_engine_init(TVG_ENGINE_SW, 0);  //Initialize software renderer and use the main thread only
 * \endcode
 *
-* \param[in] engine_method The engine types to initialize. This is relative to the Canvas types, in which it will be used. For multiple backeneds bitwise operation is allowed.
+* \param[in] engine_method The engine types to initialize. This is relative to the Canvas types, in which it will be used. For multiple backends bitwise operation is allowed.
 *   - TVG_ENGINE_SW: CPU rasterizer
 *   - TVG_ENGINE_GL: OpenGL rasterizer (not supported yet)
 * \param[in] threads The number of additional threads used to perform rendering. Zero indicates only the main thread is to be used.
@@ -269,7 +269,7 @@ TVG_EXPORT Tvg_Result tvg_engine_init(Tvg_Engine engine_method, unsigned threads
 * tvg_engine_term(TVG_ENGINE_SW);
 * \endcode
 *
-* \param engine_method The engine types to terminate. This is relative to the Canvas types, in which it will be used. For multiple backeneds bitwise operation is allowed
+* \param engine_method The engine types to terminate. This is relative to the Canvas types, in which it will be used. For multiple backends bitwise operation is allowed
 *   - TVG_ENGINE_SW: CPU rasterizer
 *   - TVG_ENGINE_GL: OpenGL rasterizer (not supported yet)
 *