aboutsummaryrefslogtreecommitdiff
path: root/examples/7-rdfloader/exampleRDFLoader.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/7-rdfloader/exampleRDFLoader.go')
-rw-r--r--examples/7-rdfloader/exampleRDFLoader.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/7-rdfloader/exampleRDFLoader.go b/examples/7-rdfloader/exampleRDFLoader.go
index 4eae8c9..5258ac2 100644
--- a/examples/7-rdfloader/exampleRDFLoader.go
+++ b/examples/7-rdfloader/exampleRDFLoader.go
@@ -40,9 +40,9 @@ func main() {
// Printing some of the document Information
fmt.Println(strings.Repeat("=", 80))
fmt.Println("Some Attributes of the Document:")
- fmt.Printf("Document Name: %s\n", doc.CreationInfo.DocumentName)
- fmt.Printf("DataLicense: %s\n", doc.CreationInfo.DataLicense)
- fmt.Printf("Document Namespace: %s\n", doc.CreationInfo.DocumentNamespace)
- fmt.Printf("SPDX Version: %s\n", doc.CreationInfo.SPDXVersion)
+ fmt.Printf("Document Name: %s\n", doc.DocumentName)
+ fmt.Printf("DataLicense: %s\n", doc.DataLicense)
+ fmt.Printf("Document Namespace: %s\n", doc.DocumentNamespace)
+ fmt.Printf("SPDX Version: %s\n", doc.SPDXVersion)
fmt.Println(strings.Repeat("=", 80))
}