Skip to content

Commit 283b644

Browse files
author
Curtis Mason
committed
changed capitalization in samples comments
Signed-off-by: Curtis Mason <[email protected]>
1 parent 0e14afa commit 283b644

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

samples/python-event-requests/cloudevent_to_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
event = CloudEvent(headers=headers, data=data)
4040

4141
# Print the created CloudEvent then send it to some url we got from
42-
# Command line
42+
# command line
4343
print(f"Sent {event}")
4444
requests.post(url, headers=event.headers, json=event.data)

samples/python-event-requests/sample-server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ def hello():
2121
# Convert headers to dict
2222
headers = dict(request.headers)
2323

24-
# Create a Cloud Event
24+
# Create a CloudEvent
2525
event = CloudEvent(headers=headers, data=request.json)
2626

27-
# Print the received cloud event
27+
# Print the received CloudEvent
2828
print(f"Received {event}")
2929
return '', 204
3030

0 commit comments

Comments
 (0)