Skip to content

Commit 6f932f2

Browse files
committed
fix typos
1 parent 28f9107 commit 6f932f2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

code_samples/java/encrypt-collection-example.mdx

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

code_samples/policy_code/create_namespace.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main() {
3131
log.Fatal(err)
3232
}
3333

34-
// Create Namesapce
34+
// Create Namespace
3535
namespace := &namespaces.CreateNamespaceRequest{
3636
Name: "opentdf.io",
3737
}

code_samples/policy_code/create_subject_condition_set.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func main() {
3434

3535
// Create Subject Condition Set
3636

37-
coditionset := &subjectmapping.CreateSubjectConditionSetRequest{
37+
conditionset := &subjectmapping.CreateSubjectConditionSetRequest{
3838
SubjectConditionSet: &subjectmapping.SubjectConditionSetCreate{
3939
SubjectSets: []*policy.SubjectSet{
4040
{
@@ -55,7 +55,7 @@ func main() {
5555
},
5656
}
5757

58-
log, err := client.SubjectMapping.CreateSubjectConditionSet(context.Background(), coditionset)
58+
resp, err := client.SubjectMapping.CreateSubjectConditionSet(context.Background(), conditionset)
5959
if err != nil {
6060
log.Fatal(err)
6161
}

docs/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Find all the information you need to get started with OpenTDF.
2828
{
2929
name: "TDF",
3030
description: `
31-
The Trust Data Format (TDF) is an open standard that enables the cryptographic binding ofattribute-based
31+
The Trust Data Format (TDF) is an open standard that enables the cryptographic binding of attribute-based
3232
access control (ABAC) policy to a data object so that the policy travels with the data.`,
3333
url: "/spec/schema/opentdf",
3434
},

docs/sdks/tdf.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ sidebar_position: 4
55
import EncryptionTDF from '../../code_samples/tdf/encryption_ztdf.mdx'
66

77

8-
# Creating TDF's
8+
# Creating TDFs
99

1010
<EncryptionTDF />

0 commit comments

Comments
 (0)