@@ -33,7 +33,7 @@ func ByVidPidBoardsV2Path(vid string, pid string) string {
3333 return fmt .Sprintf ("/builder/v2/boards/byVidPid/%s/%s" , param0 , param1 )
3434}
3535
36- // Provides the board identified by the :vid and :pid params. Doesn't require authentication.
36+ // ByVidPidBoardsV2 provides the board identified by the :vid and :pid params. Doesn't require authentication.
3737func (c * Client ) ByVidPidBoardsV2 (ctx context.Context , path string ) (* http.Response , error ) {
3838 req , err := c .NewByVidPidBoardsV2Request (ctx , path )
3939 if err != nil {
@@ -42,7 +42,7 @@ func (c *Client) ByVidPidBoardsV2(ctx context.Context, path string) (*http.Respo
4242 return c .Client .Do (ctx , req )
4343}
4444
45- // NewByVidPidBoardsV2Request create the request corresponding to the byVidPid action endpoint of the boards_v2 resource.
45+ // NewByVidPidBoardsV2Request creates the request corresponding to the byVidPid action endpoint of the boards_v2 resource.
4646func (c * Client ) NewByVidPidBoardsV2Request (ctx context.Context , path string ) (* http.Request , error ) {
4747 scheme := c .Scheme
4848 if scheme == "" {
@@ -62,7 +62,7 @@ func ListBoardsV2Path() string {
6262 return fmt .Sprintf ("/builder/v2/boards" )
6363}
6464
65- // Provides a list of all the boards supported by Arduino Create. Doesn't require any authentication.
65+ // ListBoardsV2 provides a list of all the boards supported by Arduino Create. Doesn't require any authentication.
6666func (c * Client ) ListBoardsV2 (ctx context.Context , path string , limit * int , offset * int ) (* http.Response , error ) {
6767 req , err := c .NewListBoardsV2Request (ctx , path , limit , offset )
6868 if err != nil {
@@ -71,7 +71,7 @@ func (c *Client) ListBoardsV2(ctx context.Context, path string, limit *int, offs
7171 return c .Client .Do (ctx , req )
7272}
7373
74- // NewListBoardsV2Request create the request corresponding to the list action endpoint of the boards_v2 resource.
74+ // NewListBoardsV2Request creates the request corresponding to the list action endpoint of the boards_v2 resource.
7575func (c * Client ) NewListBoardsV2Request (ctx context.Context , path string , limit * int , offset * int ) (* http.Request , error ) {
7676 scheme := c .Scheme
7777 if scheme == "" {
@@ -102,7 +102,7 @@ func ShowBoardsV2Path(fqbn string) string {
102102 return fmt .Sprintf ("/builder/v2/boards/%s" , param0 )
103103}
104104
105- // Provides the board identified by an fqbn. Doesn't require authentication.
105+ // ShowBoardsV2 provides the board identified by an fqbn. Doesn't require authentication.
106106func (c * Client ) ShowBoardsV2 (ctx context.Context , path string ) (* http.Response , error ) {
107107 req , err := c .NewShowBoardsV2Request (ctx , path )
108108 if err != nil {
@@ -111,7 +111,7 @@ func (c *Client) ShowBoardsV2(ctx context.Context, path string) (*http.Response,
111111 return c .Client .Do (ctx , req )
112112}
113113
114- // NewShowBoardsV2Request create the request corresponding to the show action endpoint of the boards_v2 resource.
114+ // NewShowBoardsV2Request creates the request corresponding to the show action endpoint of the boards_v2 resource.
115115func (c * Client ) NewShowBoardsV2Request (ctx context.Context , path string ) (* http.Request , error ) {
116116 scheme := c .Scheme
117117 if scheme == "" {
0 commit comments