summaryrefslogtreecommitdiff
path: root/docs/YamlIO.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/YamlIO.rst')
-rw-r--r--docs/YamlIO.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/YamlIO.rst b/docs/YamlIO.rst
index f87f61f44a..084a70aa45 100644
--- a/docs/YamlIO.rst
+++ b/docs/YamlIO.rst
@@ -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++