Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code_samples/java/encrypt-collection-example.mdx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion code_samples/policy_code/create_namespace.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func main() {
log.Fatal(err)
}

// Create Namesapce
// Create Namespace
namespace := &namespaces.CreateNamespaceRequest{
Name: "opentdf.io",
}
Expand Down
4 changes: 2 additions & 2 deletions code_samples/policy_code/create_subject_condition_set.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {

// Create Subject Condition Set

coditionset := &subjectmapping.CreateSubjectConditionSetRequest{
conditionset := &subjectmapping.CreateSubjectConditionSetRequest{
SubjectConditionSet: &subjectmapping.SubjectConditionSetCreate{
SubjectSets: []*policy.SubjectSet{
{
Expand All @@ -55,7 +55,7 @@ func main() {
},
}

log, err := client.SubjectMapping.CreateSubjectConditionSet(context.Background(), coditionset)
resp, err := client.SubjectMapping.CreateSubjectConditionSet(context.Background(), conditionset)
if err != nil {
log.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Find all the information you need to get started with OpenTDF.
{
name: "TDF",
description: `
The Trust Data Format (TDF) is an open standard that enables the cryptographic binding ofattribute-based
The Trust Data Format (TDF) is an open standard that enables the cryptographic binding of attribute-based
access control (ABAC) policy to a data object so that the policy travels with the data.`,
url: "/spec/schema/opentdf",
},
Expand Down
2 changes: 1 addition & 1 deletion docs/sdks/tdf.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ sidebar_position: 4
import EncryptionTDF from '../../code_samples/tdf/encryption_ztdf.mdx'


# Creating TDF's
# Creating TDFs

<EncryptionTDF />