Skip to content

Commit

Permalink
Correct file extention of README (protocolbuffers#10125)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinzid authored Jun 9, 2022
1 parent 2bc5f95 commit 1bbf6f3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/AddPerson.java
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion examples/ListPeople.java
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# See README.txt.
# See README.md.

.PHONY: all cpp java python clean

Expand Down
2 changes: 1 addition & 1 deletion examples/add_person.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// See README.txt for information and build instructions.
// See README.md for information and build instructions.

#include <ctime>
#include <fstream>
Expand Down
2 changes: 1 addition & 1 deletion examples/add_person.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/addressbook.proto
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/list_people.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// See README.txt for information and build instructions.
// See README.md for information and build instructions.

#include <fstream>
#include <google/protobuf/util/time_util.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/list_people.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1bbf6f3

Please sign in to comment.