Skip to content

Commit

Permalink
Fix comments of schema compatibility strategy. (apache#3923)
Browse files Browse the repository at this point in the history
### Motivation

Fix comments of schema compatibility strategy.

### Modifications

Change comment of SchemaCompatibilityStrategy.BACKWARD and SchemaCompatibilityStrategy.FORWARD
  • Loading branch information
codelipenghui authored and sijie committed Mar 29, 2019
1 parent 5ea4231 commit 50fb65d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ public enum SchemaCompatibilityStrategy {
ALWAYS_COMPATIBLE,

/**
* Messages written by a new schema can be read by an old schema
* Messages written by an old schema can be read by a new schema
*/
BACKWARD,

/**
* Messages written by an old schema can be read be a new schema
* Messages written by a new schema can be read by an old schema
*/
FORWARD,

Expand Down

0 comments on commit 50fb65d

Please sign in to comment.