Commit e099459 1 parent aa70e33 commit e099459 Copy full SHA for e099459
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ impl Client {
410
410
/// let pod: Pod = client.get("some_pod", &Namespace::from("default")).await?;
411
411
/// let pp = &PatchParams::apply("controller").force();
412
412
/// // Perform an apply patch on the resource
413
- /// client.apply(pod, pp).await?;
413
+ /// client.apply(& pod, pp).await?;
414
414
/// # Ok(())
415
415
/// # }
416
416
/// ```
@@ -451,7 +451,7 @@ impl Client {
451
451
/// let pod: Pod = client.get("some_pod", &Namespace::from("default")).await?;
452
452
/// let pp = &PatchParams::apply("controller").force();
453
453
/// // Perform an apply patch on the resource status
454
- /// client.apply( pod, pp).await?;
454
+ /// client.apply_status(& pod, pp).await?;
455
455
/// # Ok(())
456
456
/// # }
457
457
/// ```
You can’t perform that action at this time.
0 commit comments