diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md index 0070a25..628422d 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -9,7 +9,7 @@ Will not work with older versions. destroy methods removed ----------------------- -All the destroy methods are removed since implementation is RAII compliant.s +All the destroy methods are removed since implementation is RAII compliant. API changes to PvaClientMonitor ------------------------------- diff --git a/documentation/htmldoxygen/pvaClientGet.html b/documentation/htmldoxygen/pvaClientGet.html index 12984d6..0845e92 100644 --- a/documentation/htmldoxygen/pvaClientGet.html +++ b/documentation/htmldoxygen/pvaClientGet.html @@ -40,18 +40,18 @@ pvaClientGet is a synchronous wrapper for the pvAccess::ChannelGet API, which is a callback based API. Thus it is easier to use than pvAccess::ChannelGet itself.
-An instance of PvaClientGet is created via a call to one of the followimg:
+An instance of PvaClientGet is created via a call to one of the following:
class PvaClientChannel
...
{
...
- PvaClientGetPtr get(std::string const & request = "field(value,alarm,timeStamp)");
- PvaClientGetPtr createGet(std::string const & request = "");
- PvaClientGetPtr createGet(epics::pvData::PVStructurePtr const & pvRequest);
+ PvaClientGetPtr get(std::string const & request = "field(value,alarm,timeStamp)");
+ PvaClientGetPtr createGet(std::string const & request = "");
+ PvaClientGetPtr createGet(epics::pvData::PVStructurePtr const & pvRequest);
...
};
-An instance of PvaClientGet/b> connects to a single channel.
+
An instance of PvaClientGet connects to a single channel.
PvaClientGet has both synchronous methods, which block, and non blocking methods.
PvaClientChannel has methods:
@@ -65,8 +65,8 @@ waitGet waits until the server send a message that the get is comple
getData get the data.
-Note that issueConnect and issueGet do not block but all other methods -do block. +issueConnect and issueGet do not block. +All other methods can block.