Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyutangyuan committed Nov 26, 2023
2 parents f99fcf8 + 5d65702 commit 2a2ca85
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mug-errorprone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<dependency>
<groupId>com.google.mug</groupId>
<artifactId>mug-guava</artifactId>
<version>${version}</version>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion mug-protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<groupId>com.google.mug</groupId>
<artifactId>mug-guava</artifactId>
<scope>test</scope>
<version>${version}</version>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
6 changes: 3 additions & 3 deletions mug/src/main/java/com/google/mu/util/StringFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ public final <R> Optional<R> parseGreedy(
}

/**
* Similar to {@link #parse(String, MapFrom3)}, parses {@code input} and applies {@code mapper}
* Similar to {@link #parse(String, Ternary)}, parses {@code input} and applies {@code mapper}
* with the 3 placeholder values in this format string, but matches the placeholders backwards
* from the end to the beginning of the input string.
*
Expand All @@ -518,7 +518,7 @@ public final <R> Optional<R> parseGreedy(
}

/**
* Similar to {@link #parse(String, MapFrom4)}, parses {@code input} and applies {@code mapper}
* Similar to {@link #parse(String, Quarternary)}, parses {@code input} and applies {@code mapper}
* with the 3 placeholder values in this format string, but matches the placeholders backwards
* from the end to the beginning of the input string.
*
Expand All @@ -536,7 +536,7 @@ public final <R> Optional<R> parseGreedy(
}

/**
* Similar to {@link #parse(String, MapFrom5)}, parses {@code input} and applies {@code mapper}
* Similar to {@link #parse(String, Quinary)}, parses {@code input} and applies {@code mapper}
* with the 5 placeholder values in this format string, but matches the placeholders backwards
* from the end to the beginning of the input string.
*
Expand Down

0 comments on commit 2a2ca85

Please sign in to comment.