Skip to content

Commit 48f7f23

Browse files
committed
Remove third-person
1 parent bc636c3 commit 48f7f23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ try:
120120
# The uri provided here "thumbnail" must match an identifier in the manifest definition.
121121
builder.add_resource_file("thumbnail", "tests/fixtures/A_thumbnail.jpg")
122122

123-
# Or we can add the resource from a stream
123+
# Or add the resource from a stream
124124
a_thumbnail_jpg_stream = open("tests/fixtures/A_thumbnail.jpg", "rb")
125125
builder.add_resource("image/jpeg", a_thumbnail_jpg_stream)
126126

@@ -137,7 +137,7 @@ try:
137137
# Add the ingredient to the builder loading information from a source file.
138138
builder.add_ingredient_file(ingredient_json, "tests/fixtures/A.jpg")
139139

140-
# Or we can add the ingredient from a stream
140+
# Or add the ingredient from a stream
141141
a_jpg_stream = open("tests/fixtures/A.jpg", "rb")
142142
builder.add_ingredient("image/jpeg", a_jpg_stream)
143143

@@ -153,7 +153,7 @@ try:
153153
# This returns the binary manifest data that could be uploaded to cloud storage.
154154
c2pa_data = builder.sign_file(signer, "tests/fixtures/A.jpg", "target/out.jpg")
155155

156-
# Or we can sign the builder with a stream and output it to a stream
156+
# Or sign the builder with a stream and output it to a stream
157157
input_stream = open("tests/fixtures/A.jpg", "rb")
158158
output_stream = open("target/out.jpg", "wb")
159159
c2pa_data = builder.sign(signer, "image/jpeg", input_stream, output_stream)

0 commit comments

Comments
 (0)