Skip to content

Commit 9068cf9

Browse files
author
Helge Mathee
committed
docs: typo fixes
1 parent 59577e3 commit 9068cf9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

FabricSplice.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,16 @@ Indices and Tables
4141
Introduction
4242
============
4343
44+
.. note:: You can find the source code for the SpliceAPI here: http://github.com/fabric-engine/SpliceAPI
45+
4446
The Fabric:Splice C/C++ API, referred to as :dfn:`SPLICECAPI` in this document, is an abstraction layer to the `Fabric Core CAPI <http://documentation.fabric-engine.com/CreationPlatform/latest/HTML/CAPIProgrammingGuide/index.html>`_. The SPLICEAPI provides a simpler way to integrate Fabric Core based functionality into C/C++ hosts applications and wraps lots of the rudimentary facilities. The :dfn:`SPLICECAPI` also supports additional facilities, such as persistence, for example.
4547
46-
Aside from this documentation API you can find a general descriptiong of how to integrate Splice into a host application here: :ref:`SPLICEINTEGRATION`. This also includes recommendations for build settings and C defines.
48+
Aside from this documentation API you can find a general description of how to integrate Splice into a host application here: :ref:`SPLICEINTEGRATION`. This also includes recommendations for build settings and C defines.
4749
4850
One API, Two Interfaces
4951
-----------------------
5052
51-
:dfn:`SPLICECAPI` is implemented as a pure C API with a thin, inlined C++ interface that makes it easier to use in C++ applications. This is done to minimize linking issues, as the C linking interface on the platforms that Fabric:Splice supports is much more controlled than the C++ linking interface. The C++ interface is thus purely a C++ programmer convience; however, it is a big programmer convenience, and as such it is recommended that you use the C++ language interface when possible. Both interfaces link with exactly the same shared library (DLL).
53+
:dfn:`SPLICECAPI` is implemented as a pure C API with a thin, inlined C++ interface that makes it easier to use in C++ applications. This is done to minimize linking issues, as the C linking interface on the platforms that Fabric:Splice supports is much more controlled than the C++ linking interface. The C++ interface is thus purely a C++ programmer convenience; however, it is a big programmer convenience, and as such it is recommended that you use the C++ language interface when possible. Both interfaces link with exactly the same shared library (DLL).
5254
5355
Since the host application targeted with the :dfn:`SPLICECAPI` are mainly C++ based, when discussing the API in this guide, we will only present the C++ version.
5456
@@ -949,7 +951,7 @@ Class Outline
949951
FabricSplice::Scripting
950952
===============================
951953
952-
The Scripting class provides static methods for parsing script arguments. This can be useful within Splice integrations. Options are provided as json strings typically, and the following helper functions simlpify parsing these.
954+
The Scripting class provides static methods for parsing script arguments. This can be useful within Splice integrations. Options are provided as json strings typically, and the following helper functions simplify parsing these.
953955
954956
Class Outline
955957
---------------------------------
@@ -1007,7 +1009,7 @@ Example
10071009
printf("Splice Error %s\n", e.what());
10081010
}
10091011
1010-
It's recommended to wrap the try and catch calles into macros, so that you can deploy them easily anywhere you use the :dfn:`SPLICECAPI`.
1012+
It's recommended to wrap the try and catch calls into macros, so that you can deploy them easily anywhere you use the :dfn:`SPLICECAPI`.
10111013
10121014
Class Outline
10131015
---------------------------------

0 commit comments

Comments
 (0)