Skip to content

Commit d5081e3

Browse files
committed
Cosmetic Markdown Fix
Signed-off-by: Oren Cohen <[email protected]>
1 parent b5ebf7b commit d5081e3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ We also encourage ALL active community participants to act as if they are mainta
2828
- Participate in the conversations on [Kubernetes Discuss](https://discuss.kubernetes.io/c/contributors/cluster-api/23)
2929

3030
- **Meetings:**
31-
- Cluster API Provider KubeVirt Syncup Meetings: [Tuesdays at 8:00 PT (Pacific Time)](https://zoom.us/j/94685513559?pwd=cnI3RUQyZ3RrckpOc1BQNDA1Q1BrZz09) (weekly starting Tuesday December 7th, 2021). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=8:00&tz=PT%20%28Pacific%20Time%29).
31+
- Cluster API Provider KubeVirt Syncup Meetings: [Tuesdays at 8:00 PT (Pacific Time)](https://zoom.us/j/94685513559?pwd=cnI3RUQyZ3RrckpOc1BQNDA1Q1BrZz09) (weekly starting Tuesday, December 7th, 2021). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=8:00&tz=PT%20%28Pacific%20Time%29).
3232
- [Meeting notes and Agenda](https://docs.google.com/document/d/1ZAnRLCKOVbDqrsrYis2OR0aZIAlqp576gCJVCkMNiHM/edit?usp=sharing).
3333

3434
### Other ways to communicate with the maintainers
@@ -44,15 +44,15 @@ If you think you have found a bug please follow the instruction below.
4444
- Please give a small amount of time giving due diligence to the issue tracker. Your issue might be a duplicate.
4545
- Get the logs from the custom controllers and please paste them in the issue.
4646
- Open a bug report.
47-
- Remember users might be searching the issue in future, so please make sure to give it a meaningful title to help others.
47+
- Remember users might be searching the issue in the future, so please make sure to give it a meaningful title to help others.
4848
- Feel free to reach out to the community on slack.
4949

5050
### Tracking new feature
5151

52-
We also have a issue tracker to track features. If you think you have a feature idea, that could make Cluster API provider Kubevirt become even more awesome, then follow these steps.
52+
We also have an issue tracker to track features. If you think you have a feature idea, that could make Cluster API provider Kubevirt become even more awesome, then follow these steps.
5353

5454
- Open a feature request
55-
- Remember users might be searching for the issue in future, so please make sure to give it a meaningful title to help others.
55+
- Remember users might be searching for the issue in the future, so please make sure to give it a meaningful title to help others.
5656
- Clearly define the use case with concrete examples. Example: type `this` and cluster-api-provider-kubevirt does `that`.
5757
- Some of our larger features will require some design. If you would like to include a technical design to your feature, please go ahead.
5858
- After the new feature is well understood, and the design is agreed upon we can start coding the feature. We would love for you to code it. So please open up a **WIP** *(work in progress)* PR and happy coding!

controllers/kubevirtcluster_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func (r *KubevirtClusterReconciler) Reconcile(goctx gocontext.Context, req ctrl.
144144
}
145145
}()
146146

147-
// Add finalizer first if does not exist to avoid the race condition between init and delete
147+
// Add finalizer first if it does not exist to avoid the race condition between init and delete
148148
if !controllerutil.ContainsFinalizer(kubevirtCluster, infrav1.ClusterFinalizer) {
149149
controllerutil.AddFinalizer(kubevirtCluster, infrav1.ClusterFinalizer)
150150
return ctrl.Result{}, nil

pkg/kubevirt/machine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func NewMachine(ctx *context.MachineContext, client client.Client, namespace str
9393
return machine, nil
9494
}
9595

96-
// IsTerminal Reports back if the VM is either being requested to terminate or is terminate
96+
// IsTerminal Reports back if the VM is either being requested to terminate or is terminated
9797
// in a way that it will never recover from.
9898
func (m *Machine) IsTerminal() (bool, string, error) {
9999
if m.vmInstance == nil || m.vmiInstance == nil {

0 commit comments

Comments
 (0)