Skip to content

Commit 1bbf6f3

Browse files
authored
Correct file extention of README (#10125)
1 parent 2bc5f95 commit 1bbf6f3

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/AddPerson.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See README.txt for information and build instructions.
1+
// See README.md for information and build instructions.
22

33
import com.example.tutorial.protos.AddressBook;
44
import com.example.tutorial.protos.Person;

examples/ListPeople.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See README.txt for information and build instructions.
1+
// See README.md for information and build instructions.
22

33
import com.example.tutorial.protos.AddressBook;
44
import com.example.tutorial.protos.Person;

examples/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See README.txt.
1+
# See README.md.
22

33
.PHONY: all cpp java python clean
44

examples/add_person.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See README.txt for information and build instructions.
1+
// See README.md for information and build instructions.
22

33
#include <ctime>
44
#include <fstream>

examples/add_person.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env python
22

3-
# See README.txt for information and build instructions.
3+
# See README.md for information and build instructions.
44

55
import addressbook_pb2
66
import sys

examples/addressbook.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See README.txt for information and build instructions.
1+
// See README.md for information and build instructions.
22
//
33
// Note: START and END tags are used in comments to define sections used in
44
// tutorials. They are not part of the syntax for Protocol Buffers.

examples/list_people.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See README.txt for information and build instructions.
1+
// See README.md for information and build instructions.
22

33
#include <fstream>
44
#include <google/protobuf/util/time_util.h>

examples/list_people.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env python
22

3-
# See README.txt for information and build instructions.
3+
# See README.md for information and build instructions.
44

55
from __future__ import print_function
66
import addressbook_pb2

0 commit comments

Comments
 (0)