From f1f9fa0155afa6f031c85ba3bffdb87fedf9f277 Mon Sep 17 00:00:00 2001
From: JM
Date: Thu, 16 Sep 2021 23:37:14 +0000
Subject: [PATCH] fix example page content html closing
tag
https://github.com/chesshacker/terraform-provider-confluence/issues/7
---
docs/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/index.md b/docs/index.md
index 0e82a64..ee9e8ef 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -28,7 +28,7 @@ provider "confluence" {
resource confluence_content "default" {
space = "MYSPACE"
title = "Example Page"
- body = "This page was built with Terraform
"
+ body = "
This page was built with Terraform
"
}
```