[Support][ErrorOr] Make old gcc happy.
[oota-llvm.git] / docs / YamlIO.rst
index f87f61f44a0fc7c0ee3dd6ffb9dfa4bfcf0045a4..084a70aa45c9dc9e66e0007eda2093cf4aa56f7d 100644 (file)
@@ -638,8 +638,8 @@ Sequence
 
 To be translated to or from a YAML sequence for your type T you must specialize
 llvm::yaml::SequenceTraits on T and implement two methods:
-“size_t size(IO &io, T&)” and “T::value_type& element(IO &io, T&, size_t indx)”.
-For example:
+``size_t size(IO &io, T&)`` and
+``T::value_type& element(IO &io, T&, size_t indx)``.  For example:
 
 .. code-block:: c++