From a0b53ceac2643690c2540bb4a5e9cc04d081ccd9 Mon Sep 17 00:00:00 2001 From: Bob Badour Date: Thu, 15 Jun 2023 16:26:21 -0700 Subject: [PATCH] Fix godoc typos. Methods got renamed, but the godoc didn't. Test: m droid dist Change-Id: Ia1181a2c7a876e54b8cd26ba1c91ce731ba8ac96 --- tools/compliance/projectmetadata/projectmetadata.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/compliance/projectmetadata/projectmetadata.go b/tools/compliance/projectmetadata/projectmetadata.go index b137a120dc..30a63258d6 100644 --- a/tools/compliance/projectmetadata/projectmetadata.go +++ b/tools/compliance/projectmetadata/projectmetadata.go @@ -63,12 +63,12 @@ func (pm *ProjectMetadata) Project() string { return pm.project } -// ProjectName returns the name of the project. +// Name returns the name of the project. func (pm *ProjectMetadata) Name() string { return pm.proto.GetName() } -// ProjectVersion returns the version of the project if available. +// Version returns the version of the project if available. func (pm *ProjectMetadata) Version() string { tp := pm.proto.GetThirdParty() if tp != nil {