From 5762648c46be9b84108958941994e10d0867bafd Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Mon, 23 Dec 2019 21:52:39 +0100 Subject: [Docs] Fix sphinx build errors. --- llvm/docs/TableGen/LangIntro.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/docs/TableGen') diff --git a/llvm/docs/TableGen/LangIntro.rst b/llvm/docs/TableGen/LangIntro.rst index d72b61f6ab7..7990d1f466b 100644 --- a/llvm/docs/TableGen/LangIntro.rst +++ b/llvm/docs/TableGen/LangIntro.rst @@ -203,13 +203,13 @@ supported include: For example, to assign the result to a class-typed value, you could write either of these: - ``BaseClass b = !getop(someDag);`` + ``BaseClass b = !getop(someDag);`` - ``BaseClass b = !cast(!getop(someDag));`` + ``BaseClass b = !cast(!getop(someDag));`` But to build a new dag node reusing the operator from another, no cast is necessary: - ``dag d = !dag(!getop(someDag), args, names);`` + ``dag d = !dag(!getop(someDag), args, names);`` ``!listconcat(a, b, ...)`` A list value that is the result of concatenating the 'a' and 'b' lists. -- cgit v1.2.3