From b886385a4cfdc9ac1f6770a1408b6bbfe96baa39 Mon Sep 17 00:00:00 2001 From: baixuyewu Date: Thu, 7 Nov 2024 09:53:39 +0800 Subject: [PATCH] fixed some spelling mistakes --- vendor/github.com/containerd/console/console.go | 2 +- vendor/github.com/containerd/ttrpc/PROTOCOL.md | 2 +- vendor/github.com/godbus/dbus/v5/conn.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vendor/github.com/containerd/console/console.go b/vendor/github.com/containerd/console/console.go index f989d28..12f7b35 100755 --- a/vendor/github.com/containerd/console/console.go +++ b/vendor/github.com/containerd/console/console.go @@ -45,7 +45,7 @@ type Console interface { SetRaw() error // DisableEcho disables echo on the console DisableEcho() error - // Reset restores the console to its orignal state + // Reset restores the console to its original state Reset() error // Size returns the window size of the console Size() (WinSize, error) diff --git a/vendor/github.com/containerd/ttrpc/PROTOCOL.md b/vendor/github.com/containerd/ttrpc/PROTOCOL.md index 12b43f6..b14940d 100755 --- a/vendor/github.com/containerd/ttrpc/PROTOCOL.md +++ b/vendor/github.com/containerd/ttrpc/PROTOCOL.md @@ -49,7 +49,7 @@ byte should be considered reserved for future use. The Stream ID must be odd for client initiated streams and even for server initiated streams. Server initiated streams are not currently supported. -## Mesage Types +## Message Types | Message Type | Name | Description | |--------------|----------|----------------------------------| diff --git a/vendor/github.com/godbus/dbus/v5/conn.go b/vendor/github.com/godbus/dbus/v5/conn.go index 76fc5cd..95be1ad 100755 --- a/vendor/github.com/godbus/dbus/v5/conn.go +++ b/vendor/github.com/godbus/dbus/v5/conn.go @@ -169,7 +169,7 @@ func Connect(address string, opts ...ConnOption) (*Conn, error) { // SystemBusPrivate returns a new private connection to the system bus. // Note: this connection is not ready to use. One must perform Auth and Hello -// on the connection before it is useable. +// on the connection before it is usable. func SystemBusPrivate(opts ...ConnOption) (*Conn, error) { return Dial(getSystemBusPlatformAddress(), opts...) } -- Gitee