From 6044ad4d908badc488ebd73d0302e01db7fa5f00 Mon Sep 17 00:00:00 2001 From: Mike Innes Date: Fri, 24 Oct 2014 07:54:42 +0100 Subject: [PATCH] uncomment text docs --- base/docs.jl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/base/docs.jl b/base/docs.jl index 8851c3f5f9712..3b9460494c47a 100644 --- a/base/docs.jl +++ b/base/docs.jl @@ -276,17 +276,17 @@ end export Text, @text_str, @text_mstr -# @doc """ -# `Text(s)`: Create an object that renders `s` as plain text. +@doc """ +`Text(s)`: Create an object that renders `s` as plain text. -# HTML("foo") + HTML("foo") -# You can also use a stream for large amounts of data: +You can also use a stream for large amounts of data: -# Text() do io -# println(io, "foo") -# end -# """ -> + Text() do io + println(io, "foo") + end +""" -> type Text{T} content::T end