summaryrefslogtreecommitdiff
path: root/simple.h
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-04 12:06:35 +0200
committerGitHub <noreply@github.com>2022-01-04 05:06:35 -0500
commit715a0bcce3316a3785eb41a5080853120f9e1f41 (patch)
tree7ac00f38e562d8c2d113ca8a30f861c10476d228 /simple.h
parentd994989cda15fe92c10bd7638d98968b1dc17c05 (diff)
downloadcryptopp-git-715a0bcce3316a3785eb41a5080853120f9e1f41.tar.gz
Fix typos (PR# 1099)
Diffstat (limited to 'simple.h')
-rw-r--r--simple.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/simple.h b/simple.h
index d3047e22..78de4098 100644
--- a/simple.h
+++ b/simple.h
@@ -18,7 +18,7 @@
NAMESPACE_BEGIN(CryptoPP)
-/// \brief Base class for identifying alogorithm
+/// \brief Base class for identifying algorithm
/// \tparam BASE base class from which to derive
/// \tparam DERIVED class which to clone
template <class DERIVED, class BASE>
@@ -467,12 +467,12 @@ protected:
};
/// \brief Implementation of BufferedTransformation's attachment interface
-/// \details Sink is a cornerstone of the Pipeline trinitiy. Data flows from
+/// \details Sink is a cornerstone of the Pipeline trinity. Data flows from
/// Sources, through Filters, and then terminates in Sinks. The difference
/// between a Source and Filter is a Source \a pumps data, while a Filter does
/// not. The difference between a Filter and a Sink is a Filter allows an
/// attached transformation, while a Sink does not.
-/// \details A Sink doesnot produce any retrievable output.
+/// \details A Sink does not produce any retrievable output.
/// \details See the discussion of BufferedTransformation in cryptlib.h for
/// more details.
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Sink : public BufferedTransformation