Fix typo, expose a function...

This commit is contained in:
Ray Jenkins 2022-04-18 14:45:03 -05:00
parent 327c1da0a0
commit 28ee6fd7b2
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ Implementing a C++ Workload
===========================
In order to implement a workload, one has to build a shared library that links against the fdb client library. This library has to
exppse a function (with C linkage) called workloadFactory which needs to return a pointer to an object of type ``FDBWorkloadFactory``.
expose a function (with C linkage) called workloadFactory which needs to return a pointer to an object of type ``FDBWorkloadFactory``.
This mechanism allows the other to implement as many workloads within one library as she wants. To do this the pure virtual classes
``FDBWorkloadFactory`` and ``FDBWorkload`` have to be implemented.