Skip to content

Commit

Permalink
Change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Feb 1, 2024
1 parent a686fa0 commit d092fe8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ public void serialize(Path path) throws IOException {
}

/**
* Get a standard {@link AprilTagFieldLayout}.
* Get an official {@link AprilTagFieldLayout}.
*
* @param field The loadable AprilTag field layout.
* @return AprilTagFieldLayout of the field.
* @throws UncheckedIOException If the layout does not exist.
*/
public static AprilTagFieldLayout loadStandardField(AprilTagFields field) {
public static AprilTagFieldLayout loadField(AprilTagFields field) {
try {
return loadFromResource(field.m_resourceFile);
} catch (IOException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public enum AprilTagFields {
* @throws UncheckedIOException If the layout does not exist
*/
public AprilTagFieldLayout loadAprilTagLayoutField() {
return AprilTagFieldLayout.loadStandardField(this);
return AprilTagFieldLayout.loadField(this);
}
}

0 comments on commit d092fe8

Please sign in to comment.