aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Galvez2017-08-30 01:12:42 -0500
committerDaniel Povey2017-08-30 01:12:42 -0500
commitd8e42b07d0b8579a5f7c6a3eb56e468a489f8fc1 (patch)
treea026e02b9e2e587a50b5645c326145b8f08ed199
parentbca082ed9e819fae7e9b4a85c51563212b776a75 (diff)
downloadkaldi-d8e42b07d0b8579a5f7c6a3eb56e468a489f8fc1.tar.gz
kaldi-d8e42b07d0b8579a5f7c6a3eb56e468a489f8fc1.tar.xz
kaldi-d8e42b07d0b8579a5f7c6a3eb56e468a489f8fc1.zip
[src] Typo fixes in documenation. (#1857)
-rw-r--r--src/util/kaldi-holder-inl.h2
-rw-r--r--src/util/kaldi-holder.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/util/kaldi-holder-inl.h b/src/util/kaldi-holder-inl.h
index 5768d4c6b..40afc355d 100644
--- a/src/util/kaldi-holder-inl.h
+++ b/src/util/kaldi-holder-inl.h
@@ -485,7 +485,7 @@ template<class BasicType> class BasicVectorVectorHolder {
485 485
486 486
487/// BasicPairVectorHolder is a Holder for a vector of pairs of 487/// BasicPairVectorHolder is a Holder for a vector of pairs of
488/// a basic type, e.g. std::vector<std::pair<int32> >. 488/// a basic type, e.g. std::vector<std::pair<int32, int32> >.
489/// Note: a basic type is defined as a type for which ReadBasicType 489/// Note: a basic type is defined as a type for which ReadBasicType
490/// and WriteBasicType are implemented, i.e. integer and floating 490/// and WriteBasicType are implemented, i.e. integer and floating
491/// types, and bool. 491/// types, and bool.
diff --git a/src/util/kaldi-holder.h b/src/util/kaldi-holder.h
index 5921d5f44..b4be522de 100644
--- a/src/util/kaldi-holder.h
+++ b/src/util/kaldi-holder.h
@@ -195,7 +195,7 @@ template<class BasicType> class BasicVectorHolder;
195template<class BasicType> class BasicVectorVectorHolder; 195template<class BasicType> class BasicVectorVectorHolder;
196 196
197// A holder for vectors of pairsof basic types, e.g. 197// A holder for vectors of pairsof basic types, e.g.
198// std::vector<std::vector<int32> >, and so on. 198// std::vector<std::pair<int32, int32> >, and so on.
199// Note: a basic type is defined as a type for which ReadBasicType 199// Note: a basic type is defined as a type for which ReadBasicType
200// and WriteBasicType are implemented, i.e. integer and floating 200// and WriteBasicType are implemented, i.e. integer and floating
201// types, and bool. Text format is (e.g. for integers), 201// types, and bool. Text format is (e.g. for integers),