From ba1935ee3cd58c183d30bc05a5ff85d04a2fcb93 Mon Sep 17 00:00:00 2001 From: LT Date: Thu, 6 Dec 2018 19:05:00 -0700 Subject: [PATCH] Changed the tick marks for std::list Numbers; (#24172) Changed the tick marks for std::list Numbers; so it displays correctly. --- guide/english/cplusplus/lists/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/cplusplus/lists/index.md b/guide/english/cplusplus/lists/index.md index 89239a1874..963786ae27 100644 --- a/guide/english/cplusplus/lists/index.md +++ b/guide/english/cplusplus/lists/index.md @@ -17,7 +17,7 @@ Traversal in a list is slow as compared to Vectors and Arrays, but once a positi ## How to declare a List If you want to declare a List of Numbers you write: -'''std::list Numbers;''' +```std::list Numbers;``` ## Functions used with List size() : Returns the number of elements in the list