File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ impl Client {
410410 /// let pod: Pod = client.get("some_pod", &Namespace::from("default")).await?;
411411 /// let pp = &PatchParams::apply("controller").force();
412412 /// // Perform an apply patch on the resource
413- /// client.apply(pod, pp).await?;
413+ /// client.apply(& pod, pp).await?;
414414 /// # Ok(())
415415 /// # }
416416 /// ```
@@ -451,7 +451,7 @@ impl Client {
451451 /// let pod: Pod = client.get("some_pod", &Namespace::from("default")).await?;
452452 /// let pp = &PatchParams::apply("controller").force();
453453 /// // Perform an apply patch on the resource status
454- /// client.apply( pod, pp).await?;
454+ /// client.apply_status(& pod, pp).await?;
455455 /// # Ok(())
456456 /// # }
457457 /// ```
You can’t perform that action at this time.
0 commit comments