aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/varint.h2
-rw-r--r--src/serialization/serialization.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/common/varint.h b/src/common/varint.h
index f1e519b8f..ffaa682c5 100644
--- a/src/common/varint.h
+++ b/src/common/varint.h
@@ -36,7 +36,7 @@
#include <sstream>
#include <string>
/*! \file varint.h
- * \breif provides the implementation of varint's
+ * \brief provides the implementation of varint's
*
* The representation of varints is rather odd. The first bit of each
* octet is significant, it represents wheter there is another part
diff --git a/src/serialization/serialization.h b/src/serialization/serialization.h
index 75a8b653e..86df71c61 100644
--- a/src/serialization/serialization.h
+++ b/src/serialization/serialization.h
@@ -29,10 +29,10 @@
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
/*! \file serialization.h
- * \breif Simple DSL AAPI based on
+ * \brief Simple DSL AAPI based on
*
* \detailed is_blob_type and has_free_serializer are
- * both descriptors for dispatching on to the serailize function.
+ * both descriptors for dispatching on to the serialize function.
*
* The API itself defines a domain specific language via dirty macro
* hacks. Greenspun's tenth rule is very much in action throughout