@@ -17,8 +17,8 @@ Plugins are used to modify llm-d-inference-scheduler's default behavior. Filter
1717 run in succession to produce the final candidate list which is then evaluated,
1818 through the process of _ scoring_ , to select the most appropriate target Pods.
1919 While llm-d-inference-scheduler comes with several existing filters and
20- more are availble in the upstream [ Gateway API Inference Extension] ( https://sigs.k8s.io/gateway-api-inference-extension ) ,
21- in some cases it may be desireable to create and deploy custom filtering code to
20+ more are available in the upstream [ Gateway API Inference Extension] ( https://sigs.k8s.io/gateway-api-inference-extension ) ,
21+ in some cases it may be desirable to create and deploy custom filtering code to
2222 match your specific requirements.
2323
2424The filters` main operating function is
@@ -33,9 +33,9 @@ The `Filter` function accepts a `SchedulingContext` (e.g., containing the
3333 to make scheduling decisions. The function returns a (possibly smaller) array
3434 of `Pod`s which satisfy the filtering criteria.
3535
36- ## Code walkthough
36+ ## Code walkthrough
3737
38- The top of the file has the expected Go package and import statments :
38+ The top of the file has the expected Go package and import statements :
3939
4040```go
4141package filter
@@ -56,7 +56,7 @@ Specifically, we import the Kubernetes `meta/v1` and `labels` packages to allow
5656 scheduling related objects) packages.
5757
5858Next we define the `ByLabels` struct type, along with the relevant fields,
59- and a consturctor function.
59+ and a constructor function.
6060
6161```go
6262// ByLabels filters out pods that do not match its label selector criteria
0 commit comments