@@ -232,7 +232,7 @@ func LibraryUpgrade(instanceID int32, libraryNames []string, downloadCB rpc.Down
232
232
have been changed to:
233
233
234
234
``` go
235
- func Watch (req *rpc .BoardListWatchRequest ) (<-chan *rpc .BoardListWatchResponse , func (), error) { ... ]
235
+ func Watch (req *rpc .BoardListWatchRequest ) (<-chan *rpc .BoardListWatchResponse , func (), error) { ... }
236
236
func LibraryUpgradeAll (req *rpc .LibraryUpgradeAllRequest , downloadCB rpc .DownloadProgressCB , taskCB rpc .TaskProgressCB ) error { ... }
237
237
func LibraryUpgrade (ctx context .Context , req *rpc .LibraryUpgradeRequest , downloadCB rpc .DownloadProgressCB , taskCB rpc .TaskProgressCB ) error { ... }
238
238
```
@@ -249,11 +249,11 @@ have been changed to:
249
249
250
250
``` go
251
251
func GetPackageManager (instance rpc .InstanceCommand ) *packagemanager .PackageManager { ... } // Deprecated
252
- func GetPackageManagerExplorer (req rpc.InstanceCommand ) (explorer *packagemanager.Explorer , release func ()) { ... ]
252
+ func GetPackageManagerExplorer (req rpc .InstanceCommand ) (explorer *packagemanager .Explorer , release func ()) { ... }
253
253
func GetLibraryManager (req rpc .InstanceCommand ) *librariesmanager .LibrariesManager { ... }
254
254
```
255
255
256
- Old code using passing the ` instanceID` inside the gRPC request must be changed to pass directly the whole gRPC request,
256
+ Old code passing the ` instanceID ` inside the gRPC request must be changed to pass directly the whole gRPC request,
257
257
for example:
258
258
259
259
``` go
0 commit comments