Skip to content

Commit ac54e6e

Browse files
authored
fix: rights a wrong against the great Neal Stephenson (#3128)
1 parent f1e2d04 commit ac54e6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

endpoints/bookstore-grpc-transcoding/bookstore_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def create_sample_bookstore():
8383
_, fiction = store.create_shelf(shelf)
8484

8585
book = bookstore_pb2.Book()
86-
book.title = 'README'
86+
book.title = 'REAMDE'
8787
book.author = "Neal Stephenson"
8888
store.create_book(fiction, book)
8989

endpoints/bookstore-grpc/bookstore_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def create_sample_bookstore():
8484
_, fiction = store.create_shelf(shelf)
8585

8686
book = bookstore_pb2.Book()
87-
book.title = 'README'
87+
book.title = 'REAMDE'
8888
book.author = "Neal Stephenson"
8989
store.create_book(fiction, book)
9090

0 commit comments

Comments
 (0)