From 1bbf6f37cc3a8bf1fb4d2111ed367807aa9c464e Mon Sep 17 00:00:00 2001 From: Chenwei Xiao Date: Fri, 10 Jun 2022 06:52:50 +0800 Subject: [PATCH] Correct file extention of README (#10125) --- examples/AddPerson.java | 2 +- examples/ListPeople.java | 2 +- examples/Makefile | 2 +- examples/add_person.cc | 2 +- examples/add_person.py | 2 +- examples/addressbook.proto | 2 +- examples/list_people.cc | 2 +- examples/list_people.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/AddPerson.java b/examples/AddPerson.java index 2f6a2313f..83971ab49 100644 --- a/examples/AddPerson.java +++ b/examples/AddPerson.java @@ -1,4 +1,4 @@ -// See README.txt for information and build instructions. +// See README.md for information and build instructions. import com.example.tutorial.protos.AddressBook; import com.example.tutorial.protos.Person; diff --git a/examples/ListPeople.java b/examples/ListPeople.java index ab07b7914..d0e037a86 100644 --- a/examples/ListPeople.java +++ b/examples/ListPeople.java @@ -1,4 +1,4 @@ -// See README.txt for information and build instructions. +// See README.md for information and build instructions. import com.example.tutorial.protos.AddressBook; import com.example.tutorial.protos.Person; diff --git a/examples/Makefile b/examples/Makefile index 1c7ec8d63..1ed7f67fd 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,4 +1,4 @@ -# See README.txt. +# See README.md. .PHONY: all cpp java python clean diff --git a/examples/add_person.cc b/examples/add_person.cc index 856e90bb7..d54d0f133 100644 --- a/examples/add_person.cc +++ b/examples/add_person.cc @@ -1,4 +1,4 @@ -// See README.txt for information and build instructions. +// See README.md for information and build instructions. #include #include diff --git a/examples/add_person.py b/examples/add_person.py index aa0fbca73..aa53d58ed 100755 --- a/examples/add_person.py +++ b/examples/add_person.py @@ -1,6 +1,6 @@ #! /usr/bin/env python -# See README.txt for information and build instructions. +# See README.md for information and build instructions. import addressbook_pb2 import sys diff --git a/examples/addressbook.proto b/examples/addressbook.proto index 1bff4ad3b..5f526980d 100644 --- a/examples/addressbook.proto +++ b/examples/addressbook.proto @@ -1,4 +1,4 @@ -// See README.txt for information and build instructions. +// See README.md for information and build instructions. // // Note: START and END tags are used in comments to define sections used in // tutorials. They are not part of the syntax for Protocol Buffers. diff --git a/examples/list_people.cc b/examples/list_people.cc index b309c5968..6f0cf20aa 100644 --- a/examples/list_people.cc +++ b/examples/list_people.cc @@ -1,4 +1,4 @@ -// See README.txt for information and build instructions. +// See README.md for information and build instructions. #include #include diff --git a/examples/list_people.py b/examples/list_people.py index d2c294c6f..98a08eda1 100755 --- a/examples/list_people.py +++ b/examples/list_people.py @@ -1,6 +1,6 @@ #! /usr/bin/env python -# See README.txt for information and build instructions. +# See README.md for information and build instructions. from __future__ import print_function import addressbook_pb2