You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2017/11/07 16:54:51 UTC

[35/50] [abbrv] beam git commit: Fix Go package comment for syscallx

Fix Go package comment for syscallx


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/6c27b82b
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/6c27b82b
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/6c27b82b

Branch: refs/heads/mr-runner
Commit: 6c27b82bb80d8520b9e11ee32248a2f9020bcb66
Parents: 4210045
Author: Henning Rohde <he...@google.com>
Authored: Fri Oct 27 11:31:33 2017 -0700
Committer: Thomas Groh <tg...@google.com>
Committed: Mon Nov 6 11:02:27 2017 -0800

----------------------------------------------------------------------
 sdks/go/pkg/beam/util/syscallx/syscall.go | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/6c27b82b/sdks/go/pkg/beam/util/syscallx/syscall.go
----------------------------------------------------------------------
diff --git a/sdks/go/pkg/beam/util/syscallx/syscall.go b/sdks/go/pkg/beam/util/syscallx/syscall.go
index 151f860..ca352ec 100644
--- a/sdks/go/pkg/beam/util/syscallx/syscall.go
+++ b/sdks/go/pkg/beam/util/syscallx/syscall.go
@@ -13,9 +13,10 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-// Syscallx provide system call utilities that attempt to hide platform differences.
-// Operations returns UnsupportedErr if not implemented on the given platform, so
-// consumers of this package should generally treat that error specially.
+// Package syscallx provides system call utilities that attempt to hide platform
+// differences. Operations return UnsupportedErr if not implemented on the
+// given platform. Consumers of this package should generally treat that
+// error specially.
 package syscallx
 
 import (