Merge pull request #10811 from dreis2211:typo-fixes-documentation

* pr/10811:
  Fix typos in ApplicationArguments and Library
This commit is contained in:
Stephane Nicoll 2017-10-30 16:31:34 +01:00
commit f18521913c
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ public class Library {
/** /**
* Return the name of file as it should be written. * Return the name of file as it should be written.
* @return then name. * @return the name
*/ */
public String getName() { public String getName() {
return this.name; return this.name;

View File

@ -34,7 +34,7 @@ public interface ApplicationArguments {
String[] getSourceArgs(); String[] getSourceArgs();
/** /**
* Return then names of all option arguments. For example, if the arguments were * Return the names of all option arguments. For example, if the arguments were
* "--foo=bar --debug" would return the values {@code ["foo", "debug"]}. * "--foo=bar --debug" would return the values {@code ["foo", "debug"]}.
* @return the option names or an empty set * @return the option names or an empty set
*/ */